Skip to content

Instantly share code, notes, and snippets.

@MGovier
MGovier / nginx.conf
Last active June 13, 2016 23:42
Nginx reverse proxy configuration for a bundled Meteor Node.JS app. Referenced from https://github.com/MGovier/WebMark.
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 8000;
# multi_accept on;
}
http {