You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A comma-separated list of all the folders in your directory to be left alone by Umbraco. If you have folders with custom files, add them to this setting to make sure Umbraco leaves them alone.
73
77
74
78
{% hint style="warning" %} Adding additional values to the Reserves URLs and Reserved Paths will overwrite default/current values. This causes performance issues as well. {% endhint %}
75
79
76
80
### Timeout
77
81
82
+
Key: `TimeOut` (default: `00:20:00`)
83
+
78
84
Configure the session timeout to determine how much time without a request being made can pass before the user is required to log in again. The session timeout format needs to be set as `HH:MM:SS`. Any activity within the backoffice will reset the timer.
79
85
80
86
{% hint style="info" %} Long session timeouts raise data exposure and unauthorized access risks. Thus, it's vital to establish a reasonable timeout to mitigate security risks. {% endhint %}
81
87
82
88
### Default UI language
83
89
90
+
Key: `DefaultUILanguage` (default: `en-US`)
91
+
84
92
The default language to use in the backoffice if a user isn't explicitly assigned one.
85
93
86
94
### Hide top level nodes from path
87
95
96
+
Key: `HideTopLevelNodeFromPath`
97
+
88
98
If you are running multiple sites, you don't want the top level node in your URL and can disable it with this setting.
89
99
90
100
### Use https
91
101
102
+
Key: `UseHttps` (default: `false`)
103
+
92
104
Makes sure that all of the requests in the backoffice are called over HTTPS instead of HTTP when set to true.
93
105
94
106
### Version check period
95
107
108
+
Key: `VersionCheckPeriod` (default: `7`)
109
+
96
110
When this value is set above 0, the backoffice will check for a new version of Umbraco every 'x' number of days where 'x' is the value defined for this setting. Set this value to 0 to never check for a new version.
By adding this value you can specify a new/different folder for storing your icon resources. It's important to be aware of NetCore's limitations regarding serving static file content. By default, static content will only be served from the `wwwroot` folder.
101
117
102
118
### Umbraco CSS path
103
119
120
+
Key: `UmbracoCssPath` (default: `~/css`)
121
+
104
122
By adding this you can specify a new/different folder for storing your CSS files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
105
123
106
124
### Umbraco scripts path
107
125
126
+
Key: `UmbracoScriptsPath` (default: `~/scripts`)
127
+
108
128
By adding this you can specify a new/different folder for storing your script/js files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
109
129
110
130
### Umbraco media path
111
131
132
+
Key: `UmbracoMediaPath` (default: `~/media`)
133
+
112
134
By adding this you can specify a new/different folder for storing your media files, and still be able to edit them within Umbraco. It's also important to be aware of NetCores limitations regarding serving static file content here as well, by default, static content will only be served from the wwwroot folder. For more info see [Extending filesystem](../../extending/filesystemproviders/)
By adding this you can specify a new/different folder for storing your media files elsewhere on the server. Unlike `UmbracoMediaPath`, this does not change the relative path that media is served from (e.g. /media) but allows for files to be stored **outside** of the wwwroot folder. Both relative paths (../../Shared/Media) and absolute server paths (X:/Shared/Media) are supported. For more info see [Extending filesystem](../../extending/filesystemproviders/)
117
141
118
142
### Install missing database
119
143
144
+
Key: `InstallMissingDatabase` (default: `false`)
145
+
120
146
This is not a setting that commonly needs to be configured.
121
147
122
148
If enabled Umbraco will try to automatically install the database when it's missing. This is primarily used in conjuction with unattended installs.
This is not a setting that commonly needs to be configured.
127
155
128
156
This value is primarily used on Umbraco Cloud for a small startup performance optimization. When this is true, the website instance will automatically be configured to not support load balancing and the website instance will be configured to be the 'primary' server for scheduling so no [primary election](../../fundamentals/setup/server-setup/load-balancing/file-system-replication.md) occurs. This will save 1 database call during startup.
This is not a setting that commonly needs to be configured.
133
163
134
164
This setting is used to specify which sql server version that the database is running, this setting is only required if you use SqlServer 2008, if this is the case set the setting to `"SqlServer.V2008"`
135
165
136
166
### Main dom lock
137
167
168
+
Key: `MainDomLock`
169
+
138
170
Specifies the implementation of IMainDomLock to be used.
139
171
140
172
`IMainDomLock` is used to synchronize access to resources like the Lucene indexes.
@@ -149,6 +181,8 @@ The default implementation unless configured otherwise is `FileSystemMainDomLock
149
181
150
182
### Main dom key discriminator
151
183
184
+
Key: `MainDomKeyDiscriminator`
185
+
152
186
For advanced use cases e.g. deployment slot swapping on Azure app services.
153
187
154
188
When using SqlMainDomLock a MainDomKey is used to identify an instance of a running application.
@@ -165,16 +199,22 @@ It's worth noting that during the swap operation there is a period where both in
165
199
166
200
### Main dom release signal polling interval
167
201
202
+
Key: `MainDomReleaseSignalPollingInterval`
203
+
168
204
Gets or sets the duration (in milliseconds) for which the MainDomLock release signal polling task should sleep. The default value is 2000ms.
169
205
170
206
### Id
171
207
208
+
Key: `Id`
209
+
172
210
This setting doesn't need to be configured.
173
211
174
212
This setting contains a unique ID used to identify your project, and is populated the first time your site runs, you shouldn't change this setting.
0 commit comments