From e6bbca473453a8d797060d97fe8ad3e729719b53 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sun, 2 Aug 2026 09:36:16 +0100 Subject: move mox and ln from make to ansible --- nginx/nginx.conf | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 nginx/nginx.conf (limited to 'nginx/nginx.conf') diff --git a/nginx/nginx.conf b/nginx/nginx.conf deleted file mode 100644 index a46887b..0000000 --- a/nginx/nginx.conf +++ /dev/null @@ -1,33 +0,0 @@ -# /etc/nginx/nginx.conf - -user nginx; -worker_processes auto; -pcre_jit on; -error_log /var/log/nginx/error.log warn; - -events { - worker_connections 1024; -} - -http { - include /etc/nginx/mime.types; - default_type application/octet-stream; - server_tokens off; - client_max_body_size 1m; - sendfile on; - tcp_nopush on; - ssl_protocols TLSv1.2 TLSv1.3; - ssl_prefer_server_ciphers on; - ssl_session_cache shared:SSL:2m; - ssl_session_timeout 1h; - gzip on; - map $http_upgrade $connection_upgrade { - default upgrade; - '' close; - } - 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; - include /etc/nginx/http.d/*.conf; -} -- cgit v1.2.3