Want to change the timeout for Backoffice on Linux...
# help-with-umbraco
m
Found the instructions for IIS on Windows but Linux seems a bit different.
I cannot find any file by that name.
I am on Ubuntu 22.04, .NET 7 and running Umbraco 12.1.2
r
in the main directory what files are listed.. maybe its just hiding..
The docs moved to the docs.umbraco.com site for 10+
m
Here are the files in my base directory
Ok folks, just figured it out.
On a Linux machine, the web.conf equivalent is appsettings-schema.Umbraco.Cms.json
found the timeout settings:
If only this has some sort of entry in that documentation page giving the name of this file
s
The schema is only there to provide some sort of "code completion" in IDEs that support it, changing the schema is not going to do anything. As pointed out, in your appsettings.json, add the Timeout configuration setting in the appropriate place. First screenshot shows you the completion when I start typing in VSCode and second on an updated Timeout setting. This is indeed documented in https://docs.umbraco.com/umbraco-cms/reference/configuration/globalsettings#timeout https://cdn.discordapp.com/attachments/1159516409664131112/1159743030924951595/image.png?ex=653221dd&is=651facdd&hm=f8d216d16d14756203f57c95f9896c7577787b427586dc0c36294d5acf995484& https://cdn.discordapp.com/attachments/1159516409664131112/1159743031109484584/image.png?ex=653221dd&is=651facdd&hm=3f48660818e49205c5744f8a4453ee13498f9213aa12ad0395ed1417b43f9350&
c
I develop on Linux Mint and add the following to most of my sites appsettings.json files. In the Umbraco|CMS|Global section:-
Copy code
"TimeOut": "00:40:00",
        "VersionCheckPeriod": 0,
No different to Windows or Mac 😉 Extends the backoffice timeout to 40 mins and removes the annoying upgrade reminder.
13 Views