From 387ac72d1bdf44f882f3f1ae23b9415884234cbe Mon Sep 17 00:00:00 2001 From: Logan Hunt Date: Tue, 31 Jan 2023 15:59:33 -0700 Subject: Distributed build tasks!! --- buildscripts/build/nginx.conf | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 buildscripts/build/nginx.conf (limited to 'buildscripts/build/nginx.conf') diff --git a/buildscripts/build/nginx.conf b/buildscripts/build/nginx.conf new file mode 100644 index 0000000..baf2cb4 --- /dev/null +++ b/buildscripts/build/nginx.conf @@ -0,0 +1,28 @@ +user www-data; +worker_processes auto; +pid /run/nginx.pid; +include /etc/nginx/modules-enabled/*.conf; + +events { + worker_connections 768; +} + +http { + sendfile on; + tcp_nopush on; + types_hash_max_size 2048; + + include /etc/nginx/mime.types; + default_type application/octet-stream; + + ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE + ssl_prefer_server_ciphers on; + + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log; + + gzip on; + + include /etc/nginx/conf.d/*.conf; + include /etc/nginx/sites-enabled/*.conf; +} -- cgit v1.3