diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-12-24 12:25:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 12:25:17 +0800 |
commit | 19ae6439b0956a578100b50cb09b1cbd40a01942 (patch) | |
tree | 48ad57f2d5fdb5c2d00735585c07089f795477d3 /custom | |
parent | 87a0396719dc12a19e9876bd4e5ba6ea008072d8 (diff) | |
download | gitea-19ae6439b0956a578100b50cb09b1cbd40a01942.tar.gz gitea-19ae6439b0956a578100b50cb09b1cbd40a01942.zip |
Improve vfsgen to not unzip bindata files but send to browser directly (#7109)
* Don't unzip files from bindata but send to browser directly
* remove dependent for httpgzip
* Add tests for parseAcceptEncoding
* Update docs for ENABLE_GZIP
* Fix bug
* Fix bug
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index b89bbf894e..e26e9e4d56 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -361,7 +361,7 @@ KEY_FILE = https/key.pem STATIC_ROOT_PATH = ; Default path for App data APP_DATA_PATH = data -; Application level GZIP support +; Enable gzip compression for runtime-generated content, static resources excluded ENABLE_GZIP = false ; Application profiling (memory and cpu) ; For "web" command it listens on localhost:6060 |