8.0.2 (#57)
Co-authored-by: meaz <meaz@disroot.org> Reviewed-on: #57 Reviewed-by: meaz <meaz@no-reply@disroot.org> Co-authored-by: muppeth <muppeth@disroot.org> Co-committed-by: muppeth <muppeth@disroot.org>
This commit is contained in:
parent
19d296b9d7
commit
041aa75a0d
2 changed files with 12 additions and 2 deletions
|
@ -7,7 +7,7 @@ forgejo_group: 'git'
|
|||
forgejo_confdir: '/etc/forgejo/app.ini'
|
||||
forgejo_dump_path: '/srv/forgejo-dump'
|
||||
forgejo_flavor: 'forgejo'
|
||||
forgejo_version: '8.0.1'
|
||||
forgejo_version: '8.0.2'
|
||||
#forgejo_version: '1.21.7-0'
|
||||
forgejo_arch: 'linux-amd64'
|
||||
#forgejo_download_url: 'https://github.com/go-gitea/gitea/releases/download/v{{ forgejo_version }}/gitea-{{ forgejo_version }}-{{ forgejo_arch }}'
|
||||
|
@ -31,6 +31,12 @@ forgejo_base_config:
|
|||
forgejo_oauth2_config:
|
||||
- 'JWT_SECRET = ' #41 random chars
|
||||
|
||||
forgejo_oauth2_client_config:
|
||||
- 'ENABLE_AUTO_REGISTRATION = false'
|
||||
- 'REGISTER_EMAIL_CONFIRM = false'
|
||||
- 'ACCOUNT_LINKING = login'
|
||||
- 'UPDATE_AVATAR = false'
|
||||
|
||||
forgejo_ui_config:
|
||||
- 'THEMES = gitea-auto,gitea-light,gitea-dark,forgejo-auto,forgejo-light,forgejo-dark' # add only the default ones, not themes ones
|
||||
- 'DEFAULT_THEME = gitea-dark'
|
||||
|
|
|
@ -8,6 +8,11 @@
|
|||
{{ item }}
|
||||
{% endfor %}
|
||||
|
||||
[oauth2_client]
|
||||
{% for item in forgejo_oauth2_client_config %}
|
||||
{{ item }}
|
||||
{% endfor %}
|
||||
|
||||
[ui]
|
||||
{% for item in forgejo_ui_config %}
|
||||
{{ item }}
|
||||
|
@ -65,7 +70,6 @@
|
|||
{{ item }}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
[session]
|
||||
{% for item in forgejo_session_config %}
|
||||
{{ item }}
|
||||
|
|
Loading…
Reference in a new issue