File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ RUN apt-get update \
12
12
13
13
# Configure Nginx and apply fix for very long server names
14
14
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
15
- && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
15
+ && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf \
16
+ && sed -i 's/worker_connections 1024/worker_connections 10240/' /etc/nginx/nginx.conf
16
17
17
18
# Install Forego
18
19
ADD https://github.com/jwilder/forego/releases/download/v0.16.1/forego /usr/local/bin/forego
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ RUN apk add --no-cache --virtual .run-deps \
9
9
10
10
# Configure Nginx and apply fix for very long server names
11
11
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
12
- && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
12
+ && sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf \
13
+ && sed -i 's/worker_connections 1024/worker_connections 10240/' /etc/nginx/nginx.conf
13
14
14
15
# Install Forego
15
16
ADD https://github.com/jwilder/forego/releases/download/v0.16.1/forego /usr/local/bin/forego
You can’t perform that action at this time.
0 commit comments