How to enable SSL ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
I have upgraded nopCommerce version 1.9 to 2.1 and did what it took to make it work.
Last thing I can't figure out is how to enable SSL use...  There was an option in version 1.9 but it is now gone...
12 years ago
You can enable it from the Web.config file.
In the appSettings section you need to set the UseSSL to True:

<appSettings>
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="UseSSL" value="true" />


Hope this helps!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.