mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Renamed web-app-port-ui to web-app-desktop
This commit is contained in:
@@ -2,7 +2,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
initIframeHandler(
|
||||
'{{ PRIMARY_DOMAIN }}',
|
||||
'{{ domain }}',
|
||||
'{{ domains | get_url("web-app-port-ui", WEB_PROTOCOL) }}'
|
||||
'{{ domains | get_url("web-app-desktop", WEB_PROTOCOL) }}'
|
||||
);
|
||||
});
|
||||
{% if MODE_DEBUG | bool %}
|
||||
|
@@ -26,4 +26,4 @@ galaxy_info:
|
||||
dependencies:
|
||||
- web-svc-legal
|
||||
- web-svc-asset
|
||||
- web-app-port-ui
|
||||
- web-app-desktop
|
@@ -1,4 +1,4 @@
|
||||
# PortUI
|
||||
# Desktop
|
||||
|
||||
## Description
|
||||
|
@@ -5,11 +5,11 @@
|
||||
(
|
||||
not (item.value.features['desktop'] | default(false) | bool)
|
||||
)
|
||||
or (domains | get_domain(item.key)).endswith(domains | get_domain('web-app-port-ui'))
|
||||
or (domains | get_domain(item.key)).endswith(domains | get_domain('web-app-desktop'))
|
||||
fail_msg: >
|
||||
Application {{ item.key }}
|
||||
has domain {{ domains | get_domain(item.key) }}
|
||||
but it does not end with {{ domains | get_domain('web-app-port-ui') }}!
|
||||
but it does not end with {{ domains | get_domain('web-app-desktop') }}!
|
||||
loop: "{{ applications
|
||||
| dict2items
|
||||
| selectattr('key', 'match', '^(web-app-|web-svc-)')
|
@@ -2,4 +2,4 @@
|
||||
- block:
|
||||
- include_tasks: 01_core.yml
|
||||
- include_tasks: utils/run_once.yml
|
||||
when: run_once_web_app_port_ui is not defined
|
||||
when: run_once_web_app_desktop is not defined
|
@@ -17,4 +17,4 @@
|
||||
description: Reload the application
|
||||
icon:
|
||||
class: fa-solid fa-rotate-right
|
||||
url: "{{ WEB_PROTOCOL }}://{{ domains | get_domain('web-app-port-ui') }}"
|
||||
url: "{{ WEB_PROTOCOL }}://{{ domains | get_domain('web-app-desktop') }}"
|
@@ -1,4 +1,4 @@
|
||||
application_id: "web-app-port-ui"
|
||||
application_id: "web-app-desktop"
|
||||
docker_repository_address: "https://github.com/kevinveenbirkenbach/port-ui"
|
||||
config_inventory_path: "{{ inventory_dir }}/files/{{ inventory_hostname }}/docker/web-app-port-ui/config.yaml.j2"
|
||||
config_inventory_path: "{{ inventory_dir }}/files/{{ inventory_hostname }}/docker/web-app-desktop/config.yaml.j2"
|
||||
docker_pull_git_repository: true
|
@@ -7,7 +7,7 @@ docker:
|
||||
features:
|
||||
matomo: true # activate tracking
|
||||
css: true # use custom infinito stile
|
||||
desktop: true # Enable in port-ui
|
||||
desktop: true # Enable in desktop
|
||||
logout: false
|
||||
server:
|
||||
csp:
|
||||
|
Reference in New Issue
Block a user