Open tbock opened 3 years ago
This is only a problem in the template since we are dynamically getting host from HTTP_HOST
I have manually changed to this for now let host = SITE_PROTOCOL + "{{ request.META.HTTP_X_FORWARDED_HOST }}";
let host = SITE_PROTOCOL + "{{ request.META.HTTP_X_FORWARDED_HOST }}";
There is likely a better way of accessing the host that will be correct
apparently it should be set to {{ request.get_host }}
This is only a problem in the template since we are dynamically getting host from HTTP_HOST
I have manually changed to this for now
let host = SITE_PROTOCOL + "{{ request.META.HTTP_X_FORWARDED_HOST }}";
There is likely a better way of accessing the host that will be correct