mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-27 12:45:32 +02:00
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
title: "CyMaIS Code Hub"
|
|
images:
|
|
gitea: "gitea/gitea:latest"
|
|
configuration:
|
|
repository:
|
|
enable_push_create_user: True # Allow users to push local repositories to Gitea and have them automatically created for a user.
|
|
default_private: last # Default private when creating a new repository: last, private, public
|
|
default_push_create_private: True # Default private when creating a new repository with push-to-create.
|
|
features:
|
|
matomo: true
|
|
css: false
|
|
portfolio_iframe: true
|
|
central_database: true
|
|
ldap: false # Deactivated because OIDC is implemented
|
|
oauth2: false # Deactivated. Use OIDC instead.
|
|
oidc: true
|
|
oauth2_proxy:
|
|
application: "application"
|
|
port: "80"
|
|
acl:
|
|
blacklist:
|
|
- "/user/login"
|
|
csp:
|
|
flags:
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
style-src:
|
|
unsafe-inline: true
|
|
whitelist:
|
|
font-src:
|
|
- "data:"
|
|
- "blob:"
|
|
worker-src:
|
|
- "blob:"
|
|
manifest-src:
|
|
- "data:"
|
|
domains:
|
|
aliases:
|
|
- "git.{{ primary_domain }}" |