goherence/examples/roles/webserver/templates/nginx.conf.tmpl
2026-09-11 10:17:25 +03:00

12 lines
235 B
Cheetah

worker_processes auto;
events {
worker_connections {{ .nginx_worker_connections | default 1024 }};
}
http {
server {
listen {{ .http_port | default 80 }};
server_name {{ .server_name | default "_" }};
}
}