First time I'm setting up a external web application for a family member. I have a Domain Name purchased through GoDaddy setup to point at my Azure website. I've added the requires SSL filter so that the pages are secure throughout the application.
public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
filters.Add(new RequireHttpsAttribute());
}
}
In debug mode through my Azure address, the pages show up as secured. (HTTPS) However, when I access them through my domain name, I receive the "Your connection is not private" page where it routes me to an 'http:' address of my site if I accept.
I looked at some of the documentation of GoDaddy and apparently they have a service I can buy to implement SSL. Is this something that is required? Or am I missing a configuration setting?