add missing theme
This commit is contained in:
parent
303a71ceb6
commit
9e804148a6
@ -39,6 +39,34 @@
|
|||||||
import_tasks: "tasks/gitea.yml"
|
import_tasks: "tasks/gitea.yml"
|
||||||
|
|
||||||
post_tasks:
|
post_tasks:
|
||||||
|
- name: Open firewalld ports
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
service: "{{ item }}"
|
||||||
|
permanent: true
|
||||||
|
immediate: true
|
||||||
|
state: enabled
|
||||||
|
with_items:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
|
||||||
|
- name: Open 22220/tcp
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
port: 22220/tcp
|
||||||
|
permanent: true
|
||||||
|
immediate: true
|
||||||
|
state: enabled
|
||||||
|
|
||||||
|
- name: Turn on necessary SELinux booleans
|
||||||
|
ansible.posix.seboolean:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: true
|
||||||
|
persistent: true
|
||||||
|
loop:
|
||||||
|
- httpd_can_network_connect
|
||||||
|
- httpd_can_network_relay
|
||||||
|
- httpd_can_connect_ldap
|
||||||
|
- httpd_read_user_content
|
||||||
|
|
||||||
- name: Touching run file that ansible has ran here
|
- name: Touching run file that ansible has ran here
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /var/log/ansible.run
|
path: /var/log/ansible.run
|
||||||
|
@ -75,9 +75,18 @@ ROUTER = console
|
|||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
DEFAULT_THEME = gitea-blue
|
DEFAULT_THEME = gitea-blue
|
||||||
THEMES = auto,gitea,arc-green,gitea-blue,gitea-modern,carbonred,darkred,pitchblack
|
THEMES = auto,gitea,arc-green,gitea-blue,gitea-modern,carbonred,darkred,pitchblack,earl-grey
|
||||||
AUTHOR = RESF Git Service
|
AUTHOR = RESF Git Service
|
||||||
DESCRIPTION = RESF Git Service for the Rocky community
|
DESCRIPTION = RESF Git Service for the Rocky community
|
||||||
|
|
||||||
[admin]
|
[admin]
|
||||||
DISABLE_REGULAR_ORG_CREATION = true
|
DISABLE_REGULAR_ORG_CREATION = true
|
||||||
|
|
||||||
|
[cron.sync_external_users]
|
||||||
|
ENABLED = true
|
||||||
|
RUN_AT_START = true
|
||||||
|
SCHEDULE = @midnight
|
||||||
|
UPDATE_EXISTING = true
|
||||||
|
|
||||||
|
[indexer]
|
||||||
|
REPO_INDEXER_ENABLED = true
|
||||||
|
Loading…
Reference in New Issue
Block a user