Skip to content

Commit caf1c89

Browse files
committed
Restore base domain to themes by host
1 parent 610de30 commit caf1c89

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

defaults/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ galaxy_app_config_default:
346346
{% endif %} }
347347
themes_config_file_by_host: >
348348
{ {% if galaxy_manage_themes and galaxy_themes_subdomains %}
349+
'{{ galaxy_themes_instance_domain }}': '{{ galaxy_config.galaxy.themes_config_file | default((galaxy_config_dir, "themes_conf.yml") | path_join) }}',
349350
{% for subdomain in galaxy_themes_subdomains %}
350351
{% if subdomain.theme is defined %}
351352
'{{ subdomain.name }}.{{ galaxy_themes_instance_domain}}': 'themes_conf-{{ subdomain.name }}.yml',

tasks/themes.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- name: Write base themes config
2020
ansible.builtin.copy:
2121
content: "{{ galaxy_themes | to_yaml }}"
22-
dest: "{{ galaxy_config_merged.themes_config_file | default((galaxy_config_dir, 'themes_conf.yml') | path_join) }}"
22+
dest: "{{ galaxy_config_merged.galaxy.themes_config_file | default((galaxy_config_dir, 'themes_conf.yml') | path_join) }}"
2323
mode: "0644"
2424

2525
- name: Write subdomain themes configs

0 commit comments

Comments
 (0)