I've been to this site countless times but never made an account. I'm working on my first big project, so, first question:
I intend to make a few websites that will be sharing the same droplet instance from hosting provider (DO).
Wagtail offers multiple-sites on a single codebase. It lets you manage all sites from a single dashboard.
Apache lets you create multiple domains/individual websites - known as 'virtual hosts' - and directs the user to the specific directory where the requested website is located.
The websites I'm working on will share a single database to a certain degree (one of the sites will act as checkout page for some of the other sites, for example, where cart contents are retrieved via api/jason (I don't know yet))
Wagtail seems to be the best choice but I want to make sure Apache isn't required regardless of how I solve this problem (ex: if DO requires apache to be able to serve my websites as opposed to directly serving from django*, for example)
*I meant in a single Apache2 instance.
tvesday