mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-22 16:21:09 +02:00
Implemented correct sphinx id
This commit is contained in:
parent
fd422a14ce
commit
14dde77134
@ -57,7 +57,7 @@ ports:
|
|||||||
web-app-lam: 8033
|
web-app-lam: 8033
|
||||||
web-app-phpmyadmin: 8034
|
web-app-phpmyadmin: 8034
|
||||||
web-app-snipe-it: 8035
|
web-app-snipe-it: 8035
|
||||||
sphinx: 8036
|
web-app-sphinx: 8036
|
||||||
phpldapadmin: 8037
|
phpldapadmin: 8037
|
||||||
fusiondirectory: 8038
|
fusiondirectory: 8038
|
||||||
presentation: 8039
|
presentation: 8039
|
||||||
|
@ -70,7 +70,7 @@ defaults_networks:
|
|||||||
subnet: 192.168.102.192/28
|
subnet: 192.168.102.192/28
|
||||||
web-app-discourse:
|
web-app-discourse:
|
||||||
subnet: 192.168.102.208/28
|
subnet: 192.168.102.208/28
|
||||||
sphinx:
|
web-app-sphinx:
|
||||||
subnet: 192.168.102.224/28
|
subnet: 192.168.102.224/28
|
||||||
web-app-lam:
|
web-app-lam:
|
||||||
subnet: 192.168.103.0/28
|
subnet: 192.168.103.0/28
|
||||||
|
@ -3,14 +3,14 @@
|
|||||||
children:
|
children:
|
||||||
# - link: support
|
# - link: support
|
||||||
|
|
||||||
{% if "sphinx" in group_names %}
|
{% if "web-app-sphinx" in group_names %}
|
||||||
|
|
||||||
- name: Documentation
|
- name: Documentation
|
||||||
description: Access our comprehensive documentation and support resources to help you get the most out of the software.
|
description: Access our comprehensive documentation and support resources to help you get the most out of the software.
|
||||||
icon:
|
icon:
|
||||||
class: fas fa-book
|
class: fas fa-book
|
||||||
url: https://{{domains | get_domain('sphinx')}}
|
url: https://{{domains | get_domain('web-app-sphinx')}}
|
||||||
iframe: {{ applications | get_app_conf('sphinx','features.port-ui-desktop',True) }}
|
iframe: {{ applications | get_app_conf('web-app-sphinx','features.port-ui-desktop',True) }}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
features:
|
features:
|
||||||
matomo: true
|
matomo: true
|
||||||
css: true
|
css: true
|
||||||
port-ui-desktop: true
|
port-ui-desktop: true
|
||||||
csp:
|
csp:
|
||||||
flags:
|
flags:
|
||||||
script-src:
|
script-src:
|
||||||
|
@ -1 +1 @@
|
|||||||
application_id: "sphinx"
|
application_id: "web-app-sphinx"
|
@ -15,7 +15,7 @@ function getExportName(slug) {
|
|||||||
|
|
||||||
// Root: redirect to your documentation
|
// Root: redirect to your documentation
|
||||||
app.get('/', (req, res) => {
|
app.get('/', (req, res) => {
|
||||||
res.redirect('{{ domains | get_url('sphinx', web_protocol) }}/{{ application_id | rel_role_path_by_application_id }}/README.html');
|
res.redirect('{{ domains | get_url('web-app-sphinx', web_protocol) }}/{{ application_id | rel_role_path_by_application_id }}/README.html');
|
||||||
});
|
});
|
||||||
|
|
||||||
// GET /:slug.svg
|
// GET /:slug.svg
|
||||||
|
Loading…
x
Reference in New Issue
Block a user