Skip to content
Snippets Groups Projects
Verified Commit c8d9c936 authored by Chris Croome's avatar Chris Croome
Browse files

webarch.conf template vars fixed

parent 25289d29
No related branches found
Tags 3.1.0
No related merge requests found
Pipeline #30990 passed
......@@ -14,11 +14,14 @@ variables:
ANSIBLE_FORCE_COLOR: "1"
ANSIBLE_REMOTE_TMP: "/tmp"
ANSIBLE_SHELL_ALLOW_WORLD_READABLE_TEMP: "1"
DEBIAN_FRONTEND: noninteractive
DEFAULT_MANAGED_STR: "Ansible managed"
MOLECULE_VERBOSITY: "0"
PY_COLORS: "1"
before_script:
- whoami
- pwd
- chmod 700 $(pwd)
- which ansible
- ansible --version
- which yamllint
......
......@@ -24,7 +24,7 @@ repos:
language: python
additional_dependencies:
# https://github.com/kellyjonbrazil/jc/releases
- jc==1.23.6
- jc==1.24.0
# https://github.com/jmespath/jmespath.py/tags
- jmespath==1.0.1
# https://github.com/jackdewinter/pymarkdown/releases
......
......@@ -80,6 +80,10 @@ argument_specs:
type: int
required: true
description: The port that Apache should listen on the localhost.
apache_matomo_domain:
type: str
required: false
description: An optional Matomo domain name for the webarch.conf template.
apache_md_private_keys:
type: list
elements: str
......@@ -159,6 +163,14 @@ argument_specs:
type: str
required: false
description: Internal variable for the PHP version.
apache_phpmyadmin_domain:
type: str
required: false
description: Optional phpMyAdmin domain name for the webarch.conf template.
apache_phpmyadmin_path:
type: str
required: false
description: Optional phpMyAdmin path for the webarch.conf template.
apache_pkgs_absent:
type: list
elements: str
......
......@@ -25,16 +25,16 @@ Alias /icons /usr/share/apache2/icons
{% if apache_conf_enabled is defined and "phpmyadmin" in apache_conf_enabled %}
SetEnv PHPMYADMIN_DOMAIN "{{ inventory_hostname }}"
SetEnv PHPMYADMIN_PATH "/phpmyadmin/"
{% elif phpmyadmin_domain is defined %}
SetEnv PHPMYADMIN_DOMAIN "{{ phpmyadmin_domain }}"
{% if phpmyadmin_path is defined %}
SetEnv PHPMYADMIN_PATH "{{ phpmyadmin_path }}"
{% elif apache_phpmyadmin_domain is defined %}
SetEnv PHPMYADMIN_DOMAIN "{{ apache_phpmyadmin_domain }}"
{% if apache_phpmyadmin_path is defined %}
SetEnv PHPMYADMIN_PATH "{{ apache_phpmyadmin_path }}"
{% else %}
SetEnv PHPMYADMIN_PATH "/"
{% endif %}
{% endif %}
{% if matomo_domain is defined %}
SetEnv PIWIK_DOMAIN "{{ matomo_domain }}"
{% if apache_matomo_domain is defined %}
SetEnv PIWIK_DOMAIN "{{ apache_matomo_domain }}"
{% endif %}
SetEnv HOME_DOMAIN "webarch.net"
SetEnv SITE_TITLE "Webarchitects Shared Hosting"
......@@ -135,9 +135,9 @@ ErrorDocument 506 /wsh/506.shtml
SuexecUserGroup www-data www-data
</IfModule>
ServerAdmin support@webarch.net
{%- if matomo_domain is defined %}
{%- if apache_matomo_domain is defined %}
SetEnv PIWIK_SITE_ID "1"
SetEnv PIWIK_SITE_DOMAIN "{{ matomo_domain }}"
SetEnv PIWIK_SITE_DOMAIN "{{ apache_matomo_domain }}"
{%- elif matomo_user is defined %}
SetEnv PIWIK_SITE_ID "1"
SetEnv PIWIK_SITE_DOMAIN "stats.{{ inventory_hostname }}"
......@@ -145,11 +145,11 @@ ErrorDocument 506 /wsh/506.shtml
DocumentRoot "/var/www/wsh"
{% if apache_conf_enabled is defined and "phpmyadmin" in apache_conf_enabled %}
RedirectPermanent /phpmyadmin https://{{ inventory_hostname }}/phpmyadmin
{% elif phpmyadmin_domain is defined %}
{% if phpmyadmin_path is defined %}
RedirectPermanent /phpmyadmin https://{{ phpmyadmin_domain }}{{ phpmyadmin_path }}
{% elif apache_phpmyadmin_domain is defined %}
{% if apache_phpmyadmin_path is defined %}
RedirectPermanent /phpmyadmin https://{{ apache_phpmyadmin_domain }}{{ apache_phpmyadmin_path }}
{% else %}
RedirectPermanent /phpmyadmin https://{{ phpmyadmin_domain }}
RedirectPermanent /phpmyadmin https://{{ apache_phpmyadmin_domain }}
{% endif %}
{% endif %}
<IfModule ssl_module>
......@@ -186,9 +186,9 @@ ErrorDocument 506 /wsh/506.shtml
SuexecUserGroup www-data www-data
</IfModule>
ServerAdmin "{{ apache_server_admin }}"
{%- if matomo_domain is defined %}
{%- if apache_matomo_domain is defined %}
SetEnv PIWIK_SITE_ID "1"
SetEnv PIWIK_SITE_DOMAIN "{{ matomo_domain }}"
SetEnv PIWIK_SITE_DOMAIN "{{ apache_matomo_domain }}"
{%- elif matomo_user is defined %}
SetEnv PIWIK_SITE_ID "1"
SetEnv PIWIK_SITE_DOMAIN "stats.{{ inventory_hostname }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment