aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf/app.ini2
-rw-r--r--modules/setting/setting.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/conf/app.ini b/conf/app.ini
index ad38c42e..8c33aff9 100644
--- a/conf/app.ini
+++ b/conf/app.ini
@@ -82,7 +82,7 @@ ENABLE_CACHE_AVATAR = false
ENABLE_NOTIFY_MAIL = false
; More detail: https://github.com/gogits/gogs/issues/165
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
-ENABLE_REVERSE_PROXY_AUTO_REGISTERATION = false
+ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
[webhook]
; Cron task interval in minutes
diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index fd07c17f..9c1b0ad3 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -341,7 +341,7 @@ func newService() {
Service.RequireSignInView = Cfg.Section("service").Key("REQUIRE_SIGNIN_VIEW").MustBool()
Service.EnableCacheAvatar = Cfg.Section("service").Key("ENABLE_CACHE_AVATAR").MustBool()
Service.EnableReverseProxyAuth = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool()
- Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTERATION").MustBool()
+ Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTRATION").MustBool()
}
var logLevels = map[string]string{