Skip to content

Instantly share code, notes, and snippets.

View bjornarhagen's full-sized avatar
🐻

Bjørnar Hagen bjornarhagen

🐻
View GitHub Profile
@bjornarhagen
bjornarhagen / gist:513722d6a4fca192666c065ee257b36b
Created January 5, 2024 16:17
nginx config for html/static
worker_processes auto;
pid /var/run/nginx/nginx.pid;
error_log /var/log/nginx/error.log;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
}
http {