diff options
author | lambda <pleromagit@rogerbraun.net> | 2018-03-28 09:34:08 +0000 |
---|---|---|
committer | lambda <pleromagit@rogerbraun.net> | 2018-03-28 09:34:08 +0000 |
commit | f8f3abe1bec5ce33a4f4710a116795868b35f38d (patch) | |
tree | 4b280b206d75fd8fc8cf8f7bc7def8bcba3f9ad9 | |
parent | df8fc7249103fc1fdb574463201f02f4c99f9bec (diff) | |
download | pleroma-f8f3abe1bec5ce33a4f4710a116795868b35f38d.tar.gz |
Update pleroma.nginx
-rw-r--r-- | installation/pleroma.nginx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index fcc3997d3..25f6dadff 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -8,7 +8,7 @@ server { } server { - listen 443; + listen 443 ssl http2; ssl on; ssl_session_timeout 5m; @@ -21,6 +21,12 @@ server { server_name example.tld; + gzip_vary on; + gzip_proxied any; + gzip_comp_level 6; + gzip_buffers 16 8k; + gzip_http_version 1.1; + gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/activity+json application/atom+xml; location / { add_header 'Access-Control-Allow-Origin' '*'; proxy_http_version 1.1; |