diff options
author | techknowlogick <techknowlogick@gitea.io> | 2022-04-05 12:16:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 12:16:01 -0400 |
commit | 48dc88acd06a440cd630f0768329563ca7f6e6f3 (patch) | |
tree | 1b8483fad41ba5664353b28fad7716eef6c75d66 /custom/conf/app.example.ini | |
parent | 5ae875a1ae0c51705cc8c79536b23130f7ce5394 (diff) | |
download | gitea-48dc88acd06a440cd630f0768329563ca7f6e6f3.tar.gz gitea-48dc88acd06a440cd630f0768329563ca7f6e6f3.zip |
Allow custom redirect for landing page (#19324)
* Allow custom redirect for landing page
* Update modules/setting/setting.go
Co-authored-by: delvh <dev.lh@web.de>
* fix lint
* one option
Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'custom/conf/app.example.ini')
-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 822be00bae..df49851311 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -237,7 +237,7 @@ RUN_MODE = ; prod ;; PPROF_DATA_PATH, use an absolute path when you start gitea as service ;PPROF_DATA_PATH = data/tmp/pprof ;; -;; Landing page, can be "home", "explore", "organizations" or "login" +;; Landing page, can be "home", "explore", "organizations", "login", or any URL such as "/org/repo" or even "https://anotherwebsite.com" ;; The "login" choice is not a security measure but just a UI flow change, use REQUIRE_SIGNIN_VIEW to force users to log in. ;LANDING_PAGE = home ;; |