From 0a80a22b8a9d624c83a6e63a0b853ba42e8c3bc0 Mon Sep 17 00:00:00 2001 From: the lemons Date: Sat, 5 Feb 2022 14:32:35 -0600 Subject: it exists --- debug/nginx.conf | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 debug/nginx.conf (limited to 'debug/nginx.conf') diff --git a/debug/nginx.conf b/debug/nginx.conf new file mode 100644 index 0000000..1ff0baf --- /dev/null +++ b/debug/nginx.conf @@ -0,0 +1,36 @@ +pid nginx.pid; +worker_processes auto; + +events { + worker_connections 768; + # multi_accept on; +} + +http { + access_log access.log; + error_log error.log; + + sendfile on; + tcp_nopush on; + types_hash_max_size 2048; + + include /etc/nginx/mime.types; + default_type application/octet-stream; + + gzip off; + + server { + listen 8080; + + location ~ ^(?.*) { + fastcgi_param PATH_INFO $path; + include /tmp/fastcgi_conf; + include /etc/nginx/fastcgi_params; + } + + location ^~ /static/ { + alias ../static/; + } + } +} + -- cgit v1.2.3