Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 2.03 KB

File metadata and controls

61 lines (43 loc) · 2.03 KB
versionFrom meta.Title meta.Description state verified-against update-links
9.0.0
Umbraco Unattended Settings
Information on the unattended settings section
complete
beta-3
true

Unattended

This settings lets you configure the unattended install & upgrade settings. This is a feature that allows Umbraco to install without using the UI. If you don't intended to use this feature, you don't need to configure this.

It's important to note that the install feature will only work if there is a connection string configured pointing to an empty database, so a configuration for unattended install & upgrade can look something like:

{
  "$schema": "https://json.schemastore.org/appsettings.json",

  "ConnectionStrings": {
    "umbracoDbDSN": "Server=.;Database=DocsSite;Integrated Security=true"
  },
  "Umbraco": {
    "CMS": {
      "Unattended": {
        "InstallUnattended": true,
        "UpgradeUnattended": true,
        "UnattendedUserName": "A.N. Other",
        "UnattendedUserEmail": "[email protected]",
        "UnattendedUserPassword": "APasswordMeetingRequirements"
      }
    }
  }
}

This will automatically install Umbraco to the DocsSite database on the local SQL server, and will also automatically upgrade whenever there is an upgrade to install.

It is generally not recommended to keep user credentials in config files, therefore we recommend using environment variables to configure these settings.

Let's go through the settings one by one

Install unattended

Umbraco will only automatically install if this is set to true, and if there is a connection string pointing to an empty database.

Upgrade unattended

If this is set to true, umbraco will automatically run the upgrade migrations once the site has been upgraded.

Unattended user name

This setting is used to specify the user name of the default admin user.

Unattended email

This setting is used to specify the email address of the default admin user.

Unattended user pass

This setting is used to specify the password of the default admin user.