initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
75891c3271
129 changed files with 8046 additions and 0 deletions
26
roles/forgejo/defaults/main.yml
Normal file
26
roles/forgejo/defaults/main.yml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
# Display name shown in the UI, emails, and page title
|
||||
forgejo_app_name: "Forgejo"
|
||||
|
||||
# Ports (internal to docker network)
|
||||
forgejo_port: 3000
|
||||
forgejo_ssh_port: 2222
|
||||
|
||||
# Registration and access
|
||||
forgejo_disable_registration: true
|
||||
forgejo_require_signin: false
|
||||
|
||||
# Timezone for the Forgejo UI — defaults to the system timezone
|
||||
forgejo_timezone: "{{ timezone | default('UTC') }}"
|
||||
|
||||
# Email notifications (set to true and configure smtp vars to enable)
|
||||
forgejo_mailer_enabled: false
|
||||
# forgejo_smtp_host: mail.example.com
|
||||
# forgejo_smtp_port: 587
|
||||
# forgejo_smtp_user: notifications@example.com
|
||||
# forgejo_mailer_from: "Forgejo <notifications@example.com>"
|
||||
# forgejo_smtp_password: defined in vault.yml
|
||||
|
||||
# Actions runner
|
||||
forgejo_runner_name: default-runner
|
||||
forgejo_runner_labels: "docker:docker://node:20-bookworm,ubuntu-latest:docker://ubuntu:latest,ubuntu-22.04:docker://ubuntu:22.04"
|
||||
Loading…
Add table
Add a link
Reference in a new issue