Skip to content

Commit

Permalink
#4641 Configure store with using SSL settings during installation if …
Browse files Browse the repository at this point in the history
…site running over the HTTPS
  • Loading branch information
skoshelev committed May 12, 2020
1 parent 90e5eb1 commit 0eac6dd
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -365,14 +365,14 @@ protected virtual string GetSamplesPath()
protected virtual void InstallStores()
{
//var storeUrl = "http://www.yourStore.com/";

This comment has been minimized.

Copy link
@AndreiMaz

AndreiMaz May 12, 2020

Member

@skoshelev этот коммент давай тоже удалим

var storeUrl = _webHelper.GetStoreLocation(false);
var storeUrl = _webHelper.GetStoreLocation();
var stores = new List<Store>
{
new Store
{
Name = "Your store name",
Url = storeUrl,
SslEnabled = false,
SslEnabled = _webHelper.IsCurrentConnectionSecured(),
Hosts = "yourstore.com,www.yourstore.com",
DisplayOrder = 1,
//should we set some default company info?

This comment has been minimized.

Copy link
@Svmurvj

Svmurvj May 12, 2020

We can remove this one also? It's already set default

Expand Down

0 comments on commit 0eac6dd

Please sign in to comment.