-
Mixed Content: The page at 'https://mydomain/' was loaded over HTTPS, but requested an insecure favicon 'http://mydomain/favicon.ico?'. This request has been blocked; the content must be served over HTTPS. In this new update CSS is blocked over HTTPS. Any solution? |
Beta Was this translation helpful? Give feedback.
Answered by
AtizaD
May 19, 2024
Replies: 1 comment 5 replies
-
someone else reporting the same and said it was fixed by " using portmapping and not pointing into the container directly" Not sure what caused this issue in latest update still looking into it |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
server {
server_name mydomain;
}
server {
if ($host = mydomain) {
return 301 https://$host$request_uri;
} # …