Can someone help a dummy out (me)?
I installed nginx and am at the NodeBB wiki page for configuring nginx as a proxy server. So far I've just been following instructions word for word, but I'm a newb and don't know what to do with this:
NGINX-served sites are contained in a server block. This block of options goes in a specific place based on how nginx was installed and configured:
/path/to/nginx/sites-available/* -- files here must be aliased to ../sites-enabled
/path/to/nginx/conf.d/*.conf -- filenames must end in .conf
/path/to/nginx/httpd.conf -- if all else fails
Below is the basic nginx configuration for a NodeBB build running on port 4567:
server {
listen 80;
etc etc etc