As you know nginx conf starts with
user www www;
What we need for an internal protected server, if a request comes to *.domain.com
we want user to be;
user * *;
on realtime. So if request is mike.domain.com, then nginx runs as user mike, if request is julie.domain.com then nginx runs as julie user.
These users exist in our system, if they don't, nginx should run as default user (www-data)
Is this possible in nginx ?
Thanks,
D
(similar to apache2 mpm-itk)