diff options
author | Kim Carlbäcker <kim.carlbacker@gmail.com> | 2016-07-12 00:21:26 +0200 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2016-07-12 06:21:26 +0800 |
commit | f4ab50501ebc3d216dd216c72f5f8ff53fa6efc1 (patch) | |
tree | 787acd1bf0d3a69c348c509a299e27995b094190 /conf/app.ini | |
parent | de10387f41c02aef2d97ca5f247a422f18e6fb38 (diff) | |
download | gitea-f4ab50501ebc3d216dd216c72f5f8ff53fa6efc1.tar.gz gitea-f4ab50501ebc3d216dd216c72f5f8ff53fa6efc1.zip |
[Fix] Don't display way too large files #1513 (#3253)
* Add MaxDisplayFileSize setting
* Don't show files that are too large
* Localized FileTooLarge
* Change IsFileTooBig => IsFileTooLarge
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/app.ini b/conf/app.ini index 755041cfe2..968c276813 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -31,6 +31,8 @@ FEED_MAX_COMMIT_NUM = 5 ; An invalid color like "none" or "disable" will have the default style ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android THEME_COLOR_META_TAG = `#ff5343` +; Max size of files to be displayed (defaults is 8MiB) +MAX_DISPLAY_FILE_SIZE = 8388608 [ui.admin] ; Number of users that are showed in one page |