By Andy
I have worked with a certain php and mysql based crm application for a while as a developer and know it inside out. I have an idea to offer an on-demand saas based hosted version where the client and can purchase a plan based on the number of users. They will simply click a button and this will automatically spin up and deploy a brand knew instance of the application for them and they will then be able to log in and use the software but wont have any access to the actual web space apart the ability to download a dump of there data anytime they want. It will automatically assign a sub-domain and email them their login details when its ready. I basically want it to be as autonomous as possible.
I think I have three possible ways to go about this:
We’ll use digital ocean as an example provider
Out of all 3, number 3 is the most appealing to me but the one I know least about.
But realistically what is the best way to go about this?
The application can be quite database heavy if it has lots of data and users. Ill also have to consider that the clients can install additional custom modules in the the application and that Ill need a way to upgrade the version on mass when bug fix releases come out etc.
Regarding option 1, does such a script or software already exist that will let me create virtual hosts and deploy a php application within it automatically at the click of a button?
I know option 2 could be done using a snapshot of a droplet and some custom scripts using the Digital ocean api.
Regarding Option 3 I’m all ears?
All advice welcome thanks?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
It sounds like you’ve got some solid options and already know the key differences between approaches.
Regarding option 1, does such a script or software already exist that will let me create virtual hosts and deploy a php application within it automatically at the click of a button?
I am sure there is but it’s not a complicated process since you can do some text replacement on a template and drop a file into apache’s configuration. In fact control panels like cPanel will often use an /etc/skel directory to set up new accounts which would allow you to pre-seed content but for a SaaS this would end up being overkill in my opinion.
I know option 2 could be done using a snapshot of a droplet and some custom scripts using the Digital ocean api.
Yes. It’s a pretty straightforward process but one droplet per account might not be cost effective unless you’ve got a pretty high markup on your pricing. I’ve built a couple SaaS/PaaS services in Ruby using this method.
Regarding Option 3 I’m all ears?
I agree that this is the most promising option giving you a good balance of separation from other users while utilizing the hardware resources more efficiently than option #2. You would need to decide whether you would also containerize your database services or whether you’d set up a large shared db cluster separate from your web app itself. Docker now has swarm built in by default so managing a cluster of multiple machines is easier. Shipyard might be a good tool to get more familiar with docker swarm (and manage it graphically) but you’ll still need to work out your signup/provisioning processes. There are likely libraries available to work with docker-swarm in php as well.
This comment has been deleted
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.