From b15900b28b640ba6c4a2f700386630f93ccc702a Mon Sep 17 00:00:00 2001 From: mko Date: Tue, 17 Feb 2015 22:27:18 +0100 Subject: [PATCH] fix replace --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2936e4a..6c3d6c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update \ # Configure Nginx and apply fix for very long server names RUN echo "daemon off;" >> /etc/nginx/nginx.conf \ && sed -i 's/^http {/&\n server_names_hash_bucket_size 128;/g' /etc/nginx/nginx.conf - && sed -i 's/^http {/&\n client_max_body_size 10m;/g' /etc/nginx/nginx.conf + && sed -i 's/#gzip on;/&\n client_max_body_size 10m;/g' /etc/nginx/nginx.conf # Install Forego RUN wget -P /usr/local/bin https://godist.herokuapp.com/projects/ddollar/forego/releases/current/linux-amd64/forego \