You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: self-hosting/govern/configure-dns-email-service.mdx
+63Lines changed: 63 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,69 @@ If any of these ports are currently in use, you can free them by running:
18
18
19
19
This is necessary for email functionality (e.g., sending invites, notifications) to work properly.
20
20
21
+
## Generate SSL/TLS Certificate for Email Domain
22
+
<Warning>
23
+
For Docker Compose deployments only
24
+
</Warning>
25
+
Before configuring DNS records for Intake Email, secure your email domain with an SSL/TLS certificate. This ensures encrypted communication between mail servers and improves email trust and deliverability.
26
+
27
+
1.**Install Certbot**
28
+
Update your system and install Certbot.
29
+
```bash
30
+
sudo apt update && sudo apt install certbot
31
+
```
32
+
For NGINX:
33
+
```bash
34
+
sudo apt install python3-certbot-nginx
35
+
```
36
+
For Apache:
37
+
```bash
38
+
sudo apt install python3-certbot-apache
39
+
```
40
+
41
+
2.**Generate SSL Certificate**
42
+
Choose the method that matches your web server setup:
0 commit comments