The docker image now uses gzip compression

This commit is contained in:
kolaente 2018-09-17 08:02:15 +02:00
parent acb0734348
commit f47483df39
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 41 additions and 0 deletions

View File

@ -2,5 +2,6 @@ FROM nginx
MAINTAINER maintainers@vikunja.io
ADD nginx.conf /etc/nginx/nginx.conf
COPY dist /usr/share/nginx/html
RUN rm /usr/share/nginx/html/js/*.map

40
nginx.conf Normal file
View File

@ -0,0 +1,40 @@
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_min_length 256;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml;
include /etc/nginx/conf.d/*.conf;
}