Skip to content

Commit

Permalink
Remove spaces from the URLS
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegoO authored Oct 2, 2020
1 parent c3681a3 commit 082bdb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/user-guide/configuration-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ The configuration keys are hierarchical. This structure is most convenient to ma
| | E.g., VirtoCommerce.Catalog | E.g., `Data Source=(local);Initial Catalog=VirtoCommerceCatalog;Persist Security Info=True;User ID=virto;Password=virto; MultipleActiveResultSets=True;Connect Timeout=30` | Other, module-specific connection string(s). E.g., VirtoCommerce.Catalog module would use `VirtoCommerce.Catalog` connection string, if it's defined. |
| | RedisConnectionString | E.g., `"localhost"` | StackExchange.Redis Configuration string. Check [Redis Configuration](https://stackexchange.github.io/StackExchange.Redis/Configuration) for details.
| VirtoCommerce | | | VC Platform system settings
| | LicenseActivationUrl |`"https://virtocommerce.com/admin/ api/licenses/activate/"` | VC Platform license activation service URL
| | LicenseActivationUrl |`"https://virtocommerce.com/admin/api/licenses/activate/"` | VC Platform license activation service URL
| | LicenseFilePath | `"App_Data/VirtoCommerce.lic"` | VC Platform license file location
| | LocalUploadFolderPath | `"App_Data/Uploads"` | Uploads folder location
| | SampleDataUrl | E.g., `"http://virtocommerce.azureedge. net/sample-data"` | URL to download sample data during initial Platform setup
| | SampleDataUrl | E.g., `"http://virtocommerce.azureedge.net/sample-data"` | URL to download sample data during initial Platform setup
| | DiscoveryPath | `"./Modules"` | Relative or absolute folder location where Platform will discover installed modules
| | AllowInsecureHttp | `false` | Controls how the OpenID Connect server (ASOS) handles the incoming requests to arriving on non-HTTPS endpoints should be rejected or not. By default, this property is set to false to help mitigate man-in-the-middle attacks.
| | Hangfire | E.g. <br>"Hangfire": {<br> "JobStorageType": "Memory",<br> "UseHangfireServer": true,<br> "AutomaticRetryCount": 1,<br> "SqlServerStorageOptions": {<br> "CommandBatchMaxTimeout": "00:05:00",<br> "SlidingInvisibilityTimeout": "00:05:00",<br> "QueuePollInterval": "00:00:00",<br> "UseRecommendedIsolationLevel": true,<br> "UsePageLocksOnDequeue": true,<br> "DisableGlobalLocks": true,<br> "EnableHeavyMigrations": true<br> }<br> } | Background processing library (Hangfire) configuration.<br><br> `JobStorageType` - current job storage. Supported values: Memory, SqlServer.<br> `UseHangfireServer` - enable/disable HangFire for this app instance.<br> `AutomaticRetryCount` - maximum number of automatic retry attempts. <br>`SqlServerStorageOptions` - Hangfire.SqlServer.SqlServerStorageOptions. Check [Hangfire's SQL Server Configuration](https://docs.hangfire.io/en/latest/configuration/using-sql-server.html#configuration) for details.
Expand All @@ -25,7 +25,7 @@ The configuration keys are hierarchical. This structure is most convenient to ma
| IdentityOptions | | | Options to configure the ASP&#46;NET Core Identity system. Check [Configure ASP.NET Core Identity](https://github.com/dotnet/AspNetCore.Docs/blob/master/aspnetcore/security/authentication/identity-configuration.md#configure-aspnet-core-identity) for details.
| ExternalModules | | | Configure external source to install modules.
| | IncludePrerelease | `false` | Show module versions marked as *Prerelease* if value is `true`.
| | ModulesManifestUrl | E.g., `"https://raw.githubusercontent. com/VirtoCommerce/vc-modules/master/modules_v3.json"` | Url to *.json* file containing modules' manifests.
| | ModulesManifestUrl | E.g., `"https://raw.githubusercontent.com/VirtoCommerce/vc-modules/master/modules_v3.json"` | Url to *.json* file containing modules' manifests.
| | AuthorizationToken | | Authorization token to access *ModulesManifestUrl*. Added to *Authorization* header, if specified.
| | AutoInstallModuleBundles | `["commerce"]` | Group(s) of modules to install automatically during initial Platform setup. Provide empty array to install none.
| Caching | | | Caching configuration
Expand Down

0 comments on commit 082bdb8

Please sign in to comment.