Is it ok to create many .conf files under conf.d directory, with each .conf file having unique server name.
for example cd $NGINX_HOME/conf.d
files under the directory are test.conf, test2.conf
test.conf
server { server_name tst1 location / { ... }
}
test2.conf
server { server_name tst2 location /{ ... } }