diff options
author | George Tsiamasiotis <gtsiam@windowslive.com> | 2024-11-26 07:51:51 +0100 |
---|---|---|
committer | Squel <squeljur+git@gmail.com> | 2024-12-01 15:50:10 +0100 |
commit | a126477e866c5d28b3dbe51f5e3ce97dffcbf199 (patch) | |
tree | 782f651f6b5772011ecc28f1f8c72b33fe8bc5dc /custom/conf/app.example.ini | |
parent | Merge pull request 'Improve Swagger documentation for user endpoints' (#6050)... (diff) | |
download | forgejo-a126477e866c5d28b3dbe51f5e3ce97dffcbf199.tar.xz forgejo-a126477e866c5d28b3dbe51f5e3ce97dffcbf199.zip |
feat: Add option to disable builtin authentication.
Setting ENABLE_INTERNAL_SIGNIN to false will disable the built-in
signin form, should the administrator prefer to limit users to SSO.
Continuation of forgejo/forgejo#6076
Diffstat (limited to 'custom/conf/app.example.ini')
-rw-r--r-- | custom/conf/app.example.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 7d508daa40..45b094d99c 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -901,6 +901,9 @@ LEVEL = Info ;; Show Registration button ;SHOW_REGISTRATION_BUTTON = true ;; +;; Whether to allow internal signin +; ENABLE_INTERNAL_SIGNIN = true +;; ;; Show milestones dashboard page - a view of all the user's milestones ;SHOW_MILESTONES_DASHBOARD_PAGE = true ;; |