Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

First of all, thanks for this great tutorial: https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-server-blocks-virtual-hosts-on-ubuntu-14-04-lts
I’m following it to manually create server blocks for multiple domains on the same server.
I can’t help but think I could be saving time by writing a script one time and running a command like “myscript domainnamehere.com” which would end up doing all of the steps for me. Here’s what I currently do:
Obviously #1 and #2 is easy, but #3 and #4 is where I think things can be made more efficient.
Also I know I probably don’t need to use the cp command to copy the site configuration over, it would probably make more sense if the sample file was included in the script so it could easily write to a file with the proper domain name variables.
How would I develop a script that could take an argument (the domain name) and do all of the above for me?
Does this make sense at all? Let me know if you need any clarification about anything. Any pointers would be greatly appreciated!