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"]