You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: custom/conf/app.example.ini
+49-14
Original file line number
Diff line number
Diff line change
@@ -388,8 +388,17 @@ INTERNAL_TOKEN=
388
388
;; Enables OAuth2 provider
389
389
ENABLE = true
390
390
;;
391
+
;; Algorithm used to sign OAuth2 tokens. Valid values: HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384, ES512
392
+
;JWT_SIGNING_ALGORITHM = RS256
393
+
;;
394
+
;; Private key file path used to sign OAuth2 tokens. The path is relative to APP_DATA_PATH.
395
+
;; This setting is only needed if JWT_SIGNING_ALGORITHM is set to RS256, RS384, RS512, ES256, ES384 or ES512.
396
+
;; The file must contain a RSA or ECDSA private key in the PKCS8 format. If no key exists a 4096 bit key will be created for you.
397
+
;JWT_SIGNING_PRIVATE_KEY_FILE = jwt/private.pem
398
+
;;
391
399
;; OAuth2 authentication secret for access and refresh tokens, change this yourself to a unique string. CLI generate option is helpful in this case. https://docs.gitea.io/en-us/command-line/#generate
392
-
JWT_SECRET =
400
+
;; This setting is only needed if JWT_SIGNING_ALGORITHM is set to HS256, HS384 or HS512.
401
+
;JWT_SECRET =
393
402
;;
394
403
;; Lifetime of an OAuth2 access token in seconds
395
404
;ACCESS_TOKEN_EXPIRATION_TIME = 3600
@@ -642,9 +651,18 @@ PATH =
642
651
;DEFAULT_ALLOW_CREATE_ORGANIZATION = true
643
652
;;
644
653
;; Either "public", "limited" or "private", default is "public"
645
-
;; Limited is for signed user only
646
-
;; Private is only for member of the organization
647
-
;; Public is for everyone
654
+
;; Limited is for users visible only to signed users
655
+
;; Private is for users visible only to members of their organizations
0 commit comments