homelab/roles/nginx/templates/nginx.conf.j2

36 lines
801 B
Plaintext
Raw Normal View History

2021-04-26 21:54:10 +00:00
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
2021-06-21 06:14:19 +00:00
log_subrequest on;
2021-04-26 21:54:10 +00:00
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
resolver 127.0.0.11 valid=30;
2021-05-14 20:46:41 +00:00
{% if self_signed == true %}
include /etc/nginx/snippets/self-signed.conf;
{% endif %}
2021-04-26 21:54:10 +00:00
include /etc/nginx/conf.d/*.conf;
}