We are building an app where users will be given their own subdomain someuser.ourapp.com. They also have the option of mapping a domain to their instance so that they can use someuser.com to access their instance. We are using nginx as the webserver and running php-fpm.
Our current thought is to give each user a vhost in nginx and to ask php-fpm to make nginx reload the configuration upon the vhost's creation. However, I feel somewhat uncomfortable with giving PHP the opportunity to reload nginx's configuration file. This is exacerbated with the fact that we will have to give the php-fpm user sudoer privileges to do this, nor does allowing a publicly facing web app to write/modify config files for a webserver feel safe.
The benefit of this is that the user's files are stored in /ourwebroot/user/public and if they upload images, files etc, it is pretty trivial to serve them if it runs in a virtualhost.
Is there a better way to do this? I have noticed that wordpress.com also providers users with account.wordpress.com and then allows mapping of myblog.com to the associated wordpress site. How are they doing this? Are they also giving each user a virtual host and reloading nginx's config on account creation?