Our blog contains the activity stream of Orchard Dojo: general news, new resources or tutorials are announced here.

Hosting Orchard Core at Exoscale

It's not all about hyperscalers: You can run your Orchard Core app in the cloud even if not using Azure, AWS, or some other giant like these. Let's see how we can do this with Exoscale! Blog post series overview This post is part of our series about hosting Orchard Core at European cloud providers. Orchard Core has built-in support for a lot of Azure services, including Media storage, secret storage, e-mail delivery and sending SMS, AI search, and even observability with Azure Application Insights with the Lombiq module. AWS also has support for Media storage. For cloud-hosted full-text search we can use Elasticsearch, and Redis to aid with horizontal scaling. How does using a smaller cloud provider, without specific support from Orchard Core, compare? We've looked into hosting a vanilla Orchard Core app as a proof of concept, and are sharing our experiences here. The goal was to run Orchard Core with a minimal hosting environment, but with a stateless web server (so, keeping the database and Media storage separate). This could've been simplified to only use a web server (and keep the database in a local SQLite file, as well as use local Media files), but we wanted to go a bit more realistic than that. To be able to play around with the web server from the GUI too, we've chosen Windows as the OS if available. Additionally, we also checked if the platform helps with any of the other common infrastructure requirements, like sending e-mails or observability. Note that while we usually received some credits from the cloud providers for testing, they are not paying for these reviews, and any endorsement or critique is our own. What's Exoscale? Exoscale is a cloud provider from Switzerland, with hosting locations back at home, as well as in Germany, Austria, Bulgaria, and since July also in Croatia. As far as services interesting for Orchard Core hosting go, they offer VMs with load balancing, AWS S3-compatible object storage, and databases as a service. Managed Kubernetes is also available, but for the sake of this post, trying to host a simple app, we won't create a cluster. Instead of Redis, you can create Valkey instances (Valkey is an open-source fork of Redis), which, for now, should just work with Orchard Core's Redis support. While OpenSearch is also available, that's incompatible with Orchard's Elasticsearch integration. DNS management is also available, though that's something I'd keep at Cloudflare for a real-life app. I'd also use Cloudflare as a CDN, despite Exoscale offering a CDN layer (with Akamai) on top of their object storage; but since in Orchard Core we don't serve Media files from storage directly, that wouldn't help anyway. If you want to send e-mails, implement observability, or add search and indexing other than with Lucene on the web server, you're on your own. Creating an Orchard Core hosting environment You surely already guessed, but we'll need three Exoscale services: A Compute Instance, i.e. a VM, for the web server. A DBaaS database; we'll use PostgreSQL. We could also create SQL Server instances, but not only would the minimum 2-core VM be an overkill for our purposes, it's also much more expensive, starting at about EUR 247/month (vs a Postgres DBaaS starting at EUR 42/month). Object Storage for Media. Let's start with the server! I went with the Swiss zone, since there's no place like home, and opted with a 2-CPU plan with 2 GB of RAM. For this site, 1 CPU would also be more than enough (while to cater for Windows, I'm more comfortable with 2 GB of RAM instead of 1), but there's no 1-CPU 2 GB RAM instance type. [image alt="Creating an Exoscale Compute Instance"]BlogPost/other-posts/2025/hosting-orchard-core-at-exoscale/creating-a-compute-instance.webp[/image] You may notice two things here: On the right, there's a warning about having to create Security Groups for ingress rules first. (Somewhat confusingly the ADD button below it actually creates the compute instance, not a Security Group.) To be able to actually connect to the VM, we also need to edit the default Security Group (or perhaps more diligently, create a new one), then open up the ingress port 80 with TCP (for HTTP), as well as add a rule for RDP. As a last step, you'll also need to add 0.0.0.0/0 (i.e. all IPs) under External Sources, allowing anyone to connect to our web server. Those ENABLE buttons for instances Mega and up mean that you need to ask Exoscale support to allow them "after a manual screening process". This I find a bit strange. Until the server started, so in the meantime, I created an Object Storage bucket in the same zone (to minimize latency, these resources should all be in the same zone): [image alt="Creating an Object Storage bucket"]BlogPost/other-posts/2025/hosting-orchard-core-at-exoscale/adding-bucket.webp?2[/image] It seems that unlike with other cloud providers where you create a storage account, then a bucket under it, here everyone shares the same storage account. Thus, bucket names should be globally unique. This doesn't seem appealing at a first glance, but apart from the naming issue, I didn't find any practical problem with it. Somewhat counterintuitively, the storage access and secret keys are API keys. You can create these following the docs; for the sake of simplicity, I created a key for the Owner role, but for a production app, you should follow the docs' recommendations and create a restricted role just to access this bucket. Finally, we also need a single-node Postgres database server: [image alt="Creating a managed database"]BlogPost/other-posts/2025/hosting-orchard-core-at-exoscale/adding-postgresql-dbaas.webp[/image] Note that this runs on its own VM. The IP filter is necessary for the web server to access the DB server; the provided CIDR matches the exact IP of it. This is everything we need, so now we can continue with setting up Orchard Core in this environment. Deploying Orchard Core to the web server You can deploy an ASP.NET Core app, including an Orchard Core-using one, with Web Deploy to IIS, using automated deployment from a GitHub Actions workflow, or just by copying its publish outputs to the server. Here, I opted with the simplest option: I published the web app to a folder from Visual Studio (but running dotnet publish from the CLI would be equally suitable), and copied the resulting files to the server via Remote Desktop. Then I could simply run the web app: [image alt="The Orchard Core app running under Windows Server"]BlogPost/other-posts/2025/hosting-orchard-core-at-exoscale/app-running.webp[/image] The app listens to port 80 because I added an appsettings.Production.json file configuring it: { "Kestrel": { "Endpoints": { "HttpEndpoint": { "Url": "http://*:80" } } } } This allows you to simply open the IP of the server in a browser, or point a DNS A record to it. Our site is now available on the internet! ...after we allowed the exe of our web app through the Windows Firewall, that is. You may notice that this is a really barebones approach: There's no IIS, no HTTPS, no proper deployment. And you're right! This is a focused example of getting Orchard Core running, but we'll return to the missing pieces later. Setting up Orchard Core Running the Orchard Core setup is standard: Just fill out the usual settings on the setup screen, and point the app to the Postgres DB. For the latter, you can copy the Postgres connection string from the Exoscale Console, take the password of the default user from the DB's Users menu, and ask your favorite AI tool to turn them into an Npgsql connection string that .NET uses. Once setup finishes, you can configure Media storage too. I've elaborated above how to set up a bucket; the service URL for it will be in the format https://sos-{zone}.exo.io, with our Switzerland zone being ch-dk-2. Now it's time to configure the connection for the app. Again, you can use the appsettings.Production.json file to add something like below, resulting in the following full file: { "Kestrel": { "Endpoints": { "HttpEndpoint": { "Url": "http://*:80" } } }, "OrchardCore": { "OrchardCore_Media_AmazonS3": { "ServiceURL": "https://sos-ch-dk-2.exo.io", "Credentials": { "SecretKey": "add the secret of the user you created", "AccessKey": "add the access key of the user you created" }, "CreateBucket": true, "RemoveBucket": true, "BucketName": "oc-media" } } } Be sure to change the ServiceURL value to that of your instance, as indicated on its Overview page (under "S3 endpoint"). That's actually an undocumented configuration key that comes very handy when, as we do here, you connect to an S3 account outside of AWS. Now restart the app (so it reads the updated configuration file) and enable the Amazon Media Storage feature from the Orchard Core admin. It'll work, despite it not running in Amazon. Magic! And with this, our app fully works! Why would you (not) use Exoscale? OK, so we've seen that running Orchard Core under Exoscale works. This is not a huge surprise, but it's nice to get it verified and have the basics figured out. Why would we do this, though, instead of choosing the beaten path with Azure or AWS, for example? European Exoscale is not just hosting in Europe, but the company itself is also based in a European country. If that matters for you, either for sentimental reasons or as a matter of company policy (like using a provider that's not under the US CLOUD Act), it can be a big plus. Note though, that while Switzerland is highly aligned with the EU legally, it's not an EU member state, nor part of the European Economic Area. Costs Exoscale can be a lot cheaper. At €17/month, the Exoscale server provides roughly the same as an A1_v2 Azure VM, which costs €45/month. However, the smallest managed Postgres instance at €42/month is way above what we'd use on Azure for an entry-level app, where an S0 Azure SQL DB would be around €13/month. So, in the end, Exoscale costs around EUR 60/month, while the roughly equivalent service in Azure would be basically the same. We do get more with Exoscale (a dedicated VM for the DB, and I think the web server is faster too), a lot more room to grow, but the cost advantage, in itself, disappears, at least in the beginning. For an entry-level app the storage is cents in both cases, but if you increase your usage, Exoscale's storage costs can be dramatically lower (EUR 0,00002750/GB vs Azure's Standard Hot tier at EUR 0,0185/GB). Network costs at Exoscale (EUR 0,02/GB for egress) and per-operation costs at Azure (there's no simple number for this) complicate things, though, so be sure to calculate what's applicable for your app. All this being said, at Azure, we'd rather use App Services: This is a higher-level "websites as a service", offering a bunch of convenience features like automated deployment, staged publishing, and configuration management. The smallest proper App Services-based infrastructure (with a staging slot and separate staging and production DBs) comes at around €90/month, though, but that also contains a lot of features lacking from VMs. Simplicity Without consulting any resource, just by playing with the Console, I could fully understand the Exoscale offering (I think...) within like half an hour. Getting the full Orchard Core environment running wouldn't have been much more, have I not written this post at the same time (plus getting stuck on the mentioned storage configuration). The cons Coming from frequently using the cushy but extremely complex ecosystem of Azure, using a more basic provider like Exoscale is certainly an interesting change. It seems to me that ultimately, there's a lot of work to do if you want to have a full-blown, highly automated hosting environment for Orchard Core, with an option for horizontal scaling. Below are the features that I'd consider necessary, and while these are given with Azure, you need to roll your own solutions with Exoscale: Staged publishing (blue-green deployment): You'd need to set up multiple VMs or multiple sites, and manage swapping staging with production somehow on your own. Automated deployments: I think under a Windows server, the easiest would be to set up Web Deploy and use it from an automation platform like GitHub Actions. Observability: You'd either need to host an observability platform yourself, or use an external service. The lack of a search/indexing service is less of an issue, because you can just use the Elastic Cloud (what's the option in Azure and AWS too), and I'd consider the lack of an e-mail service not a huge issue either (you can just use something like SendGrid). Managed Valkey is good, but starting at €43/month, it's not priced for an easy entry (just as Postgres), although it also provides a lot more resources than the lowest tiers of Azure Cache for Redis do (for a lower price). Yes, you could build an all-in-one infrastructure with Kubernetes, and have containers with services for all the above features (and a DB and storage as well), but that's a large complexity you need to manage. Using Terraform, supported by Exoscale, to ramp up your infrastructure can cut down on manual repetition (and aid portability to other providers to an extent), but is also work that you have to invest. And at the entry level, managed solutions for services like SQL and Redis (instead of hosting your own VMs/containers) can be more cost-efficient too (but that flips if your app's demand increases).There are also three notable things I very much didn't like about Exoscale's pricing: All prices on the pricing page are shown for usage hours only. That's necessary, but a metric frequently a lot more useful is the monthly cost. While I can always multiply by 730 to get an approximation of a month, it would be much clearer to have it indicated in the pricing table already. Also, I'd welcome seeing these hourly and monthly costs indicated in the Exoscale Console, when creating resources, too. The Pricing Calculator helps, and it does show monthly costs too, but it's better to show this information everywhere. The prices in EUR, CHF, and USD are exactly the same. Given that 1 CHF is 1,07 EUR, and 1 EUR is 1,16 USD as of writing this, there's a significant difference in your costs depending on what you pay with (you pay almost 25% more in CHF than USD). According to the website, "Your account can be setup in either CHF, EUR or USD, depending on your initial legal residence." This seems like an arbitrary disadvantage for Swiss users, and an advantage to non-EU ones. The latter is a surprising policy for a company primarily targeting EU customers. I'd welcome the price differences to disappear.You can only pay in advance, at least as a new customer. This requires you to either be ready to top up your balance any time you get a low credit notification, or you need to park an excessive amount at Exoscale. In either case, it's also a manual process. It would be better if they would just charge my card after each month's usage. So, what should I do?Based on the feature set, Exoscale can be a good choice to host your Orchard Core app if you don't need anything beyond what's easily possible with the existing offering, or if you already invested into a portable Kubernetes-based infrastructure. However, I think the particularities of Exoscale's pricing are not for everyone. And if you need help hosting Orchard Core at Exoscale, Azure, or onboard of a satellite (not kidding), drop us a line!

Latest tutorials

Hosting Orchard Core at Exoscale
zoltan.lehoczky
Step away from that Node.js
sara.el-saig

Featured tags

AI
SMS
IIS
MCP
API
SEO
SSL
All tags >

Live from Seattle - Orchard Harvest Day 3

This is the third day of Orchard Harvest! The downside is that it's the last day, though it's really great that this is the first Harvest with three days (instead of two). Sébastien is today's keynote speaker sharing his long-term vision regarding Orchard. Sébastien also enumerates the important aspects of Orchard and its community, most of them centered around openness. To make Orchard better, we need to learn from other systems and communities! Next on stage is Nicholas Taylor Mullen from Microsoft, talking about ASP.NET vNext as a continuation to yesterday's talk with Scott Hunter and Eilon Lipton. We've seen some of the newest features of Visual Studio too that were built to work together with ASP.NET vNext. Our third speaker today is Bing Huan Chio talking about how and why the backend system for the Halo Waypoint blog was migrated to Orchard. Since they were newcomers to Orchard at the beginning of their project at their setup required an API module, since the Orchard application served as a backend system. The REST API module that was created for this project is going be open-sourced soon and is a good candidate for adding it to the new modules of Orchard 1.9. After that a short presentation came to announce the results of the Orchard Spring Harvest Challenge. We made a live "interview" with the winner - Daniel Dabrowski - via Skype to present his great Orchard project, the MiniProfiler. And then finally, the last presentation is by us, Lombiq, on how the Orchard CMS SaaS, DotNest was created and how it is maintained. In the first half, Zoltán is talking about the requirements of such a software and what kind of tools we've built to fulfill them and then Benedek was on stage to describe the deployment process currently used by Lombiq (as well as some retrospective case-study about its development) that enables us to maintain all our websites (including DotNest, of course) and deploy them without any downtime. That's it for Orchard Harvest for this year, see you next time!

Live from Seattle - Orchard Harvest Day 2

The second day of Orchard Harvest is on! Our keynote speaker is Damien Edwards, Senior Program Manager in ASP.NET talking about how to use AngularJS in ASP.NET. He shares a lot of pieces of knowledge on how to build powerful single-page applications with a small amount of code. AngularJS is a client-side MVC framework with a ton of features that allow you to write input-heavy UI with highly reusable code, it's actually quite Orchard-y! On a sidenote, we at Lombiq also use AngularJS for most of our projects, including the ones we create for our clients and DotNest too! The next presentation is by Sébastien again, talking about adapting and using Bootstrap-based themes for Orchard websites. Sébastien walks us through the basic structure and usage of Bootstrap, what are the available solutions if you'd like to use a Bootstrap-based theme for your website and how and why he built a new theme called TheBootstrapMachine for the ASP.NET blogs. Next on stage is Sipke, giving us an in-depth session about the usage of the Workflows module through real-life examples. The last presentation before the luch break is the Orchard developers respresenting AMC Theatres: Travis Maddox and Adam Anderson. They are sharing with us their experiences about Orchard and how they built an extremely content-heavy website. They described in-depth their server architecture, performance-related experiences and results due to recent updates and site-load statistics. We also heard about how they upgraded the site with the major Orchard version and the new features and bits added to the site to enhance user experience. <LunchBreak /> After the break, Scott Hunter and Eilon Lipton talk about the future of .NET in reflection to the recently announced news regarding the .NET platform. Scott tells about some of the architectural aspects of the future generations of .NET and ASP.NET vNext. After that Eilon is taking preview version of Visual Studio 2014 for a ride to show us the basics of an ASP.NET vNext application. And then the Sébastien show is on once again! He mentions the current pressing matters of the Orchard ecosystem, like the bugs waiting to be fixed, the documentation that needs update and extensions, along with some other tasks for the near future: A very important feature currently under development by IDeliverable is the AuditTrail module. Besides, the Content Deployment module by Damien Clarke is also a good candidate for being added to the core. The localization capabilities in terms of content management definitely need some love. New admin theme (under development by Antoine), including better content organization (e.g. like the Tree by Bertrand). Adding/fixing new features to the gallery: generating the downloadable packages based on VCS changes (so module developers don't need to care about creating releases for the gallery too) and displaying information about the modules' compatibility with different Orchard versions. See you tomorrow with more Orchard Harvest news!

Live from Seattle - Orchard Harvest Day 1

The third Orchard Harvest conference, held in Seattle, just began! Orcharders from all around the world gathered together at the Microsoft campus to share their experiences about their favourite CMS. The keynote by Ylan and Bertrand got us up to speed with the current news about Orchard. Ylan gave us a warm welcome and introduced some of the well-known participants to the community. After that, Bertrand showed us historical and recent statistics (along with some funny pictures) about Orchard, the community and the contributors. In the second session, aka "the Sébastien show", the benevolant dictator of Orchard is walking us through the process and details of migrating the ASP.NET blogs to Orchard. 750 blogs hosted by 4 Azure Web Sites that run on only one Large Virtual Machine. Sébastien also talked about interesting technical details, how the migration from the old system was executed and then the conclusion came: "Orchard is fast and easy to use". Besides, the tool that was written to serve as a bridge between the old system's content and the new one (working with BlogML format and Orchard recipes) will be publicly available soon. The next session is by Jorge and Eric from Onestop: Jorge is walking us through the development and usage of the Onestop.Layout module that enables you to create custom, dynamically rearrangeable layouts, templates and slideshows. After that, Eric talked about master-child theming. The module is open-source and avaiable on BitBucket (along with other Onestop modules)! The last session before the lunch break is by Piotr from Proligence: Piotr is talking about how they adopted Orchard and the fact that they (and their clients) are more than happy with this decision. Proligence shares some of their modules with community as open source projects on BitBucket, like a unit testing framework, the Astoria framework and the PowerShell CLI. <LunchBreak /> After the break Samuel Goldenbaum from Hellocomputer (CTO) is talking about their digital agency based in Johannesburg and the some of the projects they delivered to big clients, like Toyota, the Jamaican Tourism Board and FCB South Africa. The latter project also involves the creation of an Orchard backend for serving content to mobile applications when attending conferences. Next up is the representatives of MS Open Tech, Ross Gardler and Roopali Kaujalgi. Ross is talking about the company and its relation to Microsoft, how they are working with open-source technologies and spreading the word. In the second half of the presentation Roopali is showing us how to use the Microsoft Azure Media Services module, that was recently integrated into the Orchard codebase - this module's purpose is to serve media (mostly videos) to users visiting Orchard websites. The last presentation today is Steve Taylor's session about the future of widgets in Orchard, Web Components and Polymer.js.