Howdy, just trying to get my own container stood up via CA and I get 500 errors when I attempt to access the application via browser. Second error I think is just a missing favicon and not actually germane (tho it likely fails to serve bc the server is not working):
[2024-12-10 01:20:16,416: INFO/MainProcess] mingle: all alone
[2024-12-10 01:20:16,427: INFO/MainProcess] celery@c5d01b90dd4e ready.
django.request ERROR Internal Server Error: /accounts/login/
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/django/contrib/sites/models.py", line 39, in _get_site_by_request
SITE_CACHE[host] = self.get(domain__iexact=host)
File "/usr/local/lib/python3.10/dist-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/db/models/query.py", line 496, in get
raise self.model.DoesNotExist(
django.contrib.sites.models.Site.DoesNotExist: Site matching query does not exist.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/asgiref/sync.py", line 534, in thread_handler
raise exc_info[1]
File "/usr/local/lib/python3.10/dist-packages/django/core/handlers/exception.py", line 43, in inner
response = await get_response(request)
File "/usr/local/lib/python3.10/dist-packages/django/core/handlers/base.py", line 253, in _get_response_async
response = await wrapped_callback(
File "/usr/local/lib/python3.10/dist-packages/asgiref/sync.py", line 479, in __call__
ret: _R = await loop.run_in_executor(
File "/usr/local/lib/python3.10/dist-packages/asgiref/current_thread_executor.py", line 40, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/local/lib/python3.10/dist-packages/asgiref/sync.py", line 538, in thread_handler
return func(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/views/generic/base.py", line 84, in view
return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/utils/decorators.py", line 46, in _wrapper
return bound_method(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/views/decorators/debug.py", line 92, in sensitive_post_parameters_wrapper
return view(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/utils/decorators.py", line 46, in _wrapper
return bound_method(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/views/decorators/cache.py", line 62, in _wrapped_view_func
response = view_func(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/allauth/account/views.py", line 84, in dispatch
return super().dispatch(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/allauth/account/mixins.py", line 40, in dispatch
response = super().dispatch(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/views/generic/base.py", line 119, in dispatch
return handler(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/allauth/account/mixins.py", line 59, in get
response = super().get(request, *args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/views/generic/edit.py", line 144, in get
return self.render_to_response(self.get_context_data())
File "/usr/local/lib/python3.10/dist-packages/allauth/account/views.py", line 106, in get_context_data
site = get_current_site(self.request)
File "/usr/local/lib/python3.10/dist-packages/django/contrib/sites/shortcuts.py", line 14, in get_current_site
return Site.objects.get_current(request)
File "/usr/local/lib/python3.10/dist-packages/django/contrib/sites/models.py", line 61, in get_current
return self._get_site_by_request(request)
File "/usr/local/lib/python3.10/dist-packages/django/contrib/sites/models.py", line 45, in _get_site_by_request
SITE_CACHE[domain] = self.get(domain__iexact=domain)
File "/usr/local/lib/python3.10/dist-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/usr/local/lib/python3.10/dist-packages/django/db/models/query.py", line 496, in get
raise self.model.DoesNotExist(
django.contrib.sites.models.Site.DoesNotExist: Site matching query does not exist.
django.request WARNING Not Found: /favicon.ico
Howdy, just trying to get my own container stood up via CA and I get 500 errors when I attempt to access the application via browser. Second error I think is just a missing favicon and not actually germane (tho it likely fails to serve bc the server is not working):