File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ RUN apt-get update \
53
53
54
54
# Configure Nginx and apply fix for very long server names
55
55
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
56
- && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
56
+ && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf \
57
+ && sed -i 's/worker_connections 1024/worker_connections 10240/' /etc/nginx/nginx.conf
57
58
58
59
# Install Forego + docker-gen
59
60
COPY --from=forego /go/src/github.com/ddollar/forego/forego /usr/local/bin/forego
Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ RUN apk add --no-cache --virtual .run-deps \
50
50
51
51
# Configure Nginx and apply fix for very long server names
52
52
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
53
- && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
53
+ && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf \
54
+ && sed -i 's/worker_connections 1024/worker_connections 10240/' /etc/nginx/nginx.conf
54
55
55
56
# Install Forego + docker-gen
56
57
COPY --from=forego /go/src/github.com/ddollar/forego/forego /usr/local/bin/forego
You can’t perform that action at this time.
0 commit comments