Hello, I want to redirect to www and htttps, would this code be correct to add to the config? server { listen 80; server_name mydomain.com; # add ssl settings return 301 https://www.mydomain.com$request_uri; } When I add this i get this error when...