diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-01-15 05:05:27 +0800 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2019-01-14 16:05:27 -0500 |
commit | 270fa6d63b9a25021d9663bd6162f4933b7eb5ff (patch) | |
tree | eccb0176116ee5c8daa88a5fe68720578cb675e9 /custom | |
parent | 5a081c7a800bbd94a4f8313f3b379c2691c05510 (diff) | |
download | gitea-270fa6d63b9a25021d9663bd6162f4933b7eb5ff.tar.gz gitea-270fa6d63b9a25021d9663bd6162f4933b7eb5ff.zip |
Support CORS headers to git smart http protocol (#5719)
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.ini.sample | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.ini.sample b/custom/conf/app.ini.sample index 31048f7857..a6ca758423 100644 --- a/custom/conf/app.ini.sample +++ b/custom/conf/app.ini.sample @@ -31,6 +31,9 @@ PULL_REQUEST_QUEUE_LENGTH = 1000 PREFERRED_LICENSES = Apache License 2.0,MIT License ; Disable the ability to interact with repositories using the HTTP protocol DISABLE_HTTP_GIT = false +; Value for Access-Control-Allow-Origin header, default is not to present +; WARNING: This maybe harmful to you website if you do not give it a right value. +ACCESS_CONTROL_ALLOW_ORIGIN = ; Force ssh:// clone url instead of scp-style uri when default SSH port is used USE_COMPAT_SSH_URI = false |