Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

closed as off topic by Juhana, SztupY, birryree, Bertrand Marron, Alex Dec 29 '12 at 14:50

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.