I'm trying to implement Bolt CMS in a setup where servers with content are placed behind load balancer (haproxy). Is it possible to publish content from Bolt to external servers? Or is there another solution where Bolt can be used in similar setup?
Thanks, Martin
This isn't something that Bolt itself would be responsible for but it's more than possible. Use a database that supports replication, for Bolt this allows Mysql and Postgres both of these systems allow you to add slaves that will sync the data between the two.
That's the only hard part, in terms of the frontend you can decide your strategy based on load - since the database is normally the bottleneck for quite a while you will often be ok with a single application server and two or more database servers.
You could equally have multiple frontends too each connecting to its own backend database.