diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2020-05-09 08:18:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-09 08:18:21 +0900 |
| commit | d1be8b43f699393733ea66a973570084c06e4413 (patch) | |
| tree | 817394b8a6b761de371c6ed1f1fd735520a1c52d /docs/examples | |
| parent | chore: Use actions/checkout@v2 (#6328) (diff) | |
| download | sharkey-d1be8b43f699393733ea66a973570084c06e4413.tar.gz sharkey-d1be8b43f699393733ea66a973570084c06e4413.tar.bz2 sharkey-d1be8b43f699393733ea66a973570084c06e4413.zip | |
brotli圧縮の無効化など Resolve #6325 (#6326)
* disable brotli
* disable compress between nginx and app
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/misskey.nginx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/examples/misskey.nginx b/docs/examples/misskey.nginx index 6ed51f020c..382a4edf90 100644 --- a/docs/examples/misskey.nginx +++ b/docs/examples/misskey.nginx @@ -53,6 +53,7 @@ server { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; + proxy_set_header Accept-Encoding ""; proxy_http_version 1.1; proxy_redirect off; |