From 08ee5dff9cadb4982df635b26911874b6c5be10a Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 21 Feb 2025 12:34:31 +0100 Subject: [PATCH] Solved mastodon and peertube domain bug --- roles/docker-mailu/README.md | 1 + roles/docker-mastodon/templates/mastodon.conf.j2 | 2 +- roles/docker-peertube/templates/peertube.conf.j2 | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/docker-mailu/README.md b/roles/docker-mailu/README.md index 9ae98ffa..5c4cdb83 100644 --- a/roles/docker-mailu/README.md +++ b/roles/docker-mailu/README.md @@ -139,6 +139,7 @@ Use the following tools to monitor your domain and email deliverability: - [Google Postmaster](https://postmaster.google.com/) - Analyzes deliverability and spam issues for Gmail. - [Yahoo Postmaster](https://postmaster.yahooinc.com) - Provides insights and delivery reports for Yahoo. +- [mxtoolbox.com](https://mxtoolbox.com) ### Blacklist Check 🚫 diff --git a/roles/docker-mastodon/templates/mastodon.conf.j2 b/roles/docker-mastodon/templates/mastodon.conf.j2 index 48ac5570..4bf18304 100644 --- a/roles/docker-mastodon/templates/mastodon.conf.j2 +++ b/roles/docker-mastodon/templates/mastodon.conf.j2 @@ -4,7 +4,7 @@ map $http_upgrade $connection_upgrade { } server { - server_name {{domains[application_id]}}; + server_name {{domain}}; {% include 'roles/letsencrypt/templates/ssl_header.j2' %} diff --git a/roles/docker-peertube/templates/peertube.conf.j2 b/roles/docker-peertube/templates/peertube.conf.j2 index ab5abdf4..e26df8a9 100644 --- a/roles/docker-peertube/templates/peertube.conf.j2 +++ b/roles/docker-peertube/templates/peertube.conf.j2 @@ -1,5 +1,5 @@ server { - server_name {{domains[application_id]}}; + server_name {{domain}}; {% include 'roles/letsencrypt/templates/ssl_header.j2' %}