Skip to content

Instantly share code, notes, and snippets.

@sourcesmith
sourcesmith / nginx.conf.j2
Last active January 13, 2023 11:18
nginx config for JS webapp and API endpoints
# Managed by Ansible.
user www-data;
worker_processes {{ worker_processes }};
pid /run/nginx.pid;
worker_rlimit_nofile {{ worker_rlimit_nofile }};
events {
worker_connections {{ worker_connections }};
# multi_accept on;