Hi everyone, how to running graphql server on prod...
# orm-help
a
Hi everyone, how to running graphql server on production server? should i configure in nginx or apache ?
j
You can choose either, tbh. Setting
NODE_ENV=production
makes sure all the dev features enabled by default is turned off (afaik). You then run your server and configure nginx or apache to forward traffic to it.
a
thanks mr @Jenkins 👍. i will try that