diff options
author | Clar Fon <usr@ltdk.xyz> | 2022-02-07 16:56:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 16:56:45 -0500 |
commit | 99d14f6051854fe0e6dfc7fb6f4eb0a839179977 (patch) | |
tree | 746cd4e72854e696c87f017c9238f510f826879b /custom | |
parent | 9911b66aea076347cfb271b12c90bc31e4e5b5f8 (diff) | |
download | gitea-99d14f6051854fe0e6dfc7fb6f4eb0a839179977.tar.gz gitea-99d14f6051854fe0e6dfc7fb6f4eb0a839179977.zip |
Add separate SSH_USER config option (#17584)
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'custom')
-rw-r--r-- | custom/conf/app.example.ini | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index bc98f4ca17..8dac6ab3ab 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -82,12 +82,15 @@ RUN_MODE = ; prod ;; Whether to use the builtin SSH server or not. ;START_SSH_SERVER = false ;; -;; Username to use for the builtin SSH server. If blank, then it is the value of RUN_USER. -;BUILTIN_SSH_SERVER_USER = +;; Username to use for the builtin SSH server. +;BUILTIN_SSH_SERVER_USER = %(RUN_USER)s ;; ;; Domain name to be exposed in clone URL ;SSH_DOMAIN = %(DOMAIN)s ;; +;; SSH username displayed in clone URLs. +;SSH_USER = %(BUILTIN_SSH_SERVER_USER)s +;; ;; The network interface the builtin SSH server should listen on ;SSH_LISTEN_HOST = ;; |