Server less deployment #9124
Replies: 2 comments
-
@thunder-007 could you elaborate on your use case a little or provide more context? The repository you've started the discussion in "only" includes the frontend SPA for the ownCloud web UI, so
Looking forward to your answer and hearing more of what you're planning! |
Beta Was this translation helpful? Give feedback.
-
|
Deploying OwnCloud in a serverless-like setup on Azure with Azure Blob Storage for file storage is possible, but it does require a few custom steps. Here's a basic outline of how you can approach it:
Package OwnCloud as a PHP app (ZIP or via GitHub). Create an App Service (Linux) with the appropriate PHP version. Deploy your OwnCloud files to the App Service (you can use FTP, GitHub, or Azure CLI).
OwnCloud doesn’t support Azure Blob Storage natively out-of-the-box, but you can use the Flysystem plugin. OwnCloud uses Flysystem Install and configure the Flysystem Azure Blob adapter. Update the config.php in OwnCloud to point to your Azure Blob Storage container. Example config snippet: 'objectstore' => [ Note: You’ll likely need to add the required libraries via Composer and include them in your App Service deployment.
Azure App Service isn’t fully serverless, but you only pay for what you use (especially in Consumption or Premium plans). For true serverless (like Functions), OwnCloud isn’t a great fit due to its monolithic architecture. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How can I deploy it as server less app in azure app service with files storing in azure blob
Beta Was this translation helpful? Give feedback.
All reactions