From 885e4df01c0540e3d41fa8ba1296cdc1b8822bb5 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Sat, 24 Apr 2021 12:08:45 +0200 Subject: [PATCH] Fixed domain config --- roles/yourls/tasks/configuration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/yourls/tasks/configuration.yml b/roles/yourls/tasks/configuration.yml index b2a2bef..09de8a8 100644 --- a/roles/yourls/tasks/configuration.yml +++ b/roles/yourls/tasks/configuration.yml @@ -24,7 +24,7 @@ lineinfile: path: ~/html/user/config.php regexp: 'YOURLS_SITE' - line: define( 'YOURLS_SITE', 'https:/\/{{ domain }}' ); + line: define( 'YOURLS_SITE', 'https://{{ domain }}' ); - name: set cookie key lineinfile: path: ~/html/user/config.php