From 924e03334cbeb787c80eba9a1ba700cf5166e061 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 25 Apr 2026 23:49:08 +1000 Subject: [PATCH] Updated logo API --- docker/nginx.conf | 3 +++ routes/Dockerfile | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 routes/Dockerfile diff --git a/docker/nginx.conf b/docker/nginx.conf index cca7ae9..8fda118 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -20,6 +20,9 @@ http { fastcgi_param HTTPS on; fastcgi_param HTTP_X_FORWARDED_PROTO https; include fastcgi_params; + + fastcgi_buffers 16 16k; + fastcgi_buffer_size 32k; } } } diff --git a/routes/Dockerfile b/routes/Dockerfile new file mode 100644 index 0000000..d2b8729 --- /dev/null +++ b/routes/Dockerfile @@ -0,0 +1,4 @@ +FROM ubuntu:latest +LABEL authors="josh" + +ENTRYPOINT ["top", "-b"]