I have a manual install of nginx on Ubuntu 12.04. When I ran ./configure I used the following options:
./configure --user=www-data --group=www-data --with-http_ssl_module --with-http_realip_module
Now the nginx worker processes run under the www-data user in the www-data group. However, I wish to change this to a different user (called nginx in my case).
Is this possible to do after running make and make install already?
Any help would be much appreciated.