Skip to content

Instantly share code, notes, and snippets.

View subnetmarco's full-sized avatar
🦍
Hiring, Thinking, Coding

Marco Palladino subnetmarco

🦍
Hiring, Thinking, Coding
View GitHub Profile
@hamishforbes
hamishforbes / nginx.conf
Last active November 1, 2021 22:56
Single backround thread in with multiple workers
error_log logs/error.log debug;
events {
worker_connections 1024;
}
worker_processes 4;
http {
default_type application/octet-stream;