vault backup: 2025-01-18 15:22:18
This commit is contained in:
parent
4dafa04d4d
commit
dec627c188
2 changed files with 21 additions and 0 deletions
11
Tutorials/Docker/Proxy Network.md
Normal file
11
Tutorials/Docker/Proxy Network.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
```json title="/etc/docker/daemon.json"
|
||||
{
|
||||
"ipv6": true,
|
||||
"fixed-cidr-v6": "2001:db8:1::/64"
|
||||
}
|
||||
```
|
||||
|
||||
```bash
|
||||
sudo systemctl reboot
|
||||
docker network create --subnet=192.168.1.0/24 --ipv6 --attachable proxy
|
||||
```
|
|
@ -93,3 +93,13 @@ After various testing, I have figured out two things.
|
|||
2. After you have verified emails, and do not intend to use the email feature, you can re-enable the DNS Proxy and `AAAA` records.
|
||||
|
||||
![[bluesky-pds-cloudflare.png]]
|
||||
|
||||
## SMTP
|
||||
|
||||
I use protonmail for my SMTP server. You can use any SMTP server you like, but I figured I'd share this information.
|
||||
These are the environment variables I use.
|
||||
|
||||
```
|
||||
PDS_EMAIL_SMTP_URL: smtp://user@example.com:TOKEN@smtp.protonmail.ch:587/
|
||||
PDS_EMAIL_FROM_ADDRESS: user@example.com
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue