Refactor wallabag stack name and repo variables

Brought in line with other stack naming schemes.
This commit is contained in:
Marty Oehme 2023-12-08 20:34:41 +01:00
parent 9cf43d0d5d
commit a52cab2f61
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
6 changed files with 17 additions and 20 deletions

View file

@ -1,5 +1,5 @@
{
"@id": "{{ stack.name }}_upstream",
"@id": "{{ stack_name }}_upstream",
{% if server_domain is not undefined and not none %}
"match": [
{
@ -7,7 +7,7 @@
{% if subdomain_alias is not undefined and not none %}
"{{ subdomain_alias }}.{{ server_domain }}"
{% else %}
"{{ stack.name }}.{{ server_domain }}"
"{{ stack_name }}.{{ server_domain }}"
{% endif %}
]
}
@ -19,7 +19,7 @@
{% if subdomain_alias is not undefined and not none %}
"/{{ subdomain_alias }}*"
{% else %}
"/{{ stack.name }}*"
"/{{ stack_name }}*"
{% endif %}
]
}
@ -30,7 +30,7 @@
"handler": "reverse_proxy",
"upstreams": [
{
"dial": "{{ stack.name }}_app:80"
"dial": "{{ stack_name }}_app:80"
}
]
}