Hi @Minh Pham | Ximius Greetings! Thank you for posting the question here.
The app setting AzureWebJobsStorage
Specifies the connection string for an Azure Storage account that the Functions runtime uses for normal operations. Some uses of this storage account by Functions include key management, timer trigger management, and Event Hubs checkpoints. The error message indicates that you are trying to use a local storage end point which might be hosted in the path /home/LogFiles/Application/Functions/Host
and the function app cannot access the path. Can you please confirm if you are trying to use a local storage account?
Also, we want to know why the managed identity is not working?
If you are planning to access storage account using Managed identity, you will need to create a role assignment that provides access to the storage account for AzureWebJobsStorage at runtime. Management roles like Owner are not sufficient. The Storage Blob Data Owner role covers the basic needs of Functions host storage - the runtime needs both read and write access to blobs and the ability to create containers. Please refer to the article - Connecting to host storage with an identity for more information on this.
Let us know if this helps.