From ae1a4ce9fa6b5dfd5ba9ae9b270341b72bee2db2 Mon Sep 17 00:00:00 2001 From: putro <putro@autistici.org> Date: Sun, 9 Oct 2022 20:55:21 +0200 Subject: [PATCH] fixed WebBaseURL for RT --- roles/rt4/templates/rt4.pm.j2 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/rt4/templates/rt4.pm.j2 b/roles/rt4/templates/rt4.pm.j2 index 771b9aa3..d6f0983f 100644 --- a/roles/rt4/templates/rt4.pm.j2 +++ b/roles/rt4/templates/rt4.pm.j2 @@ -1,6 +1,6 @@ # Set the Organization name and our public URL. Set($rtname, '{{ helpdesk_app_name }}'); -Set($WebBaseURL , 'https://helpdesk.autistici.org/rt/'); +Set($WebBaseURL , 'https://helpdesk.autistici.org'); Set($Organization, '{{ helpdesk_organization }}'); Set($WebDomain, 'helpdesk.{{ domain_public[0] }}'); Set($WebPort, 443); @@ -77,17 +77,17 @@ Set(%FullTextSearch, {% endif %} {% if helpdesk_gpg_enabled %} -Set( %Crypt, - RejectOnMissingPrivateKey => 0, - RejectOnBadData => 0 -); +Set( %Crypt, + RejectOnMissingPrivateKey => 0, + RejectOnBadData => 0 +); Set(%GnuPG, Enable => 1, OutgoingMessageFormat => 'RFC', GnuPG => '/usr/bin/gpg' ); Set(%GnuPGOptions, - 'use-agent' => undef, + 'use-agent' => undef, 'no-permission-warning' => undef, 'homedir' => "/config/gnupg", 'passphrase' => '', -- GitLab