mirror of
https://github.com/kou029w/fogtype.com
synced 2025-02-01 14:48:44 +00:00
Compare commits
89 commits
d44b3b1118
...
afbf317e04
Author | SHA1 | Date | |
---|---|---|---|
afbf317e04 | |||
|
4f8f5f2eda | ||
d37ab6f893 | |||
d99b955e14 | |||
670ca6ee0f | |||
460d16cd24 | |||
|
beffbf6ed6 | ||
|
6d730a9c63 | ||
|
5b9a0aaf4e | ||
|
2a43ed49df | ||
|
fd0991030f | ||
84a22d0858 | |||
|
d5246c9321 | ||
|
aa3ee68148 | ||
|
3df041824a | ||
|
0086f7dd7f | ||
|
95f19a2fe2 | ||
|
e1d279069b | ||
|
9b3dea60c8 | ||
|
56852ac4bf | ||
|
70bd47b38b | ||
|
46910fbc79 | ||
|
6eb25ab3be | ||
|
a729ae4581 | ||
|
e4016ee66e | ||
40b5fc9b2e | |||
4c0934014b | |||
|
b9b82dde35 | ||
|
5d0aa05c98 | ||
|
a09d5beba5 | ||
|
4f4076b836 | ||
|
7f30a9760f | ||
|
9ef82e21f1 | ||
|
4acbfc6f7c | ||
|
5e3a21fbc5 | ||
|
e7b4aac908 | ||
|
cea5dc6bb2 | ||
|
2b0a1d7ab6 | ||
|
8e91ba0c53 | ||
|
d86715ef27 | ||
|
431ee8752a | ||
|
126b27b1ce | ||
|
7fc05ddd04 | ||
|
1394dc296e | ||
|
85b7bfddfe | ||
|
041bfd7254 | ||
|
029d9d3d83 | ||
|
655409542e | ||
|
0b1e8fc021 | ||
b72bb05429 | |||
38a7ce63ba | |||
f7b6f7b244 | |||
08bcab2921 | |||
|
4ed77cedfb | ||
|
dfae40e945 | ||
|
13168cd103 | ||
|
41366110d5 | ||
|
58a6a176b5 | ||
85333dde94 | |||
|
13875b4efd | ||
|
6672e72cad | ||
|
8b9ca954d6 | ||
|
183dd27861 | ||
|
6c069911a1 | ||
5c527a648c | |||
583ce073ef | |||
bd2befd964 | |||
dda81457a1 | |||
|
9c8a1dd7ae | ||
|
4484b43149 | ||
|
9a0e4ce760 | ||
|
dbe6cee05b | ||
|
5921e77e23 | ||
|
ede940e04d | ||
e410fa7c8d | |||
28c7c00149 | |||
543a2f9dc3 | |||
8ec1d7eefc | |||
376fa01400 | |||
|
41dd79cfeb | ||
|
e886730f85 | ||
24cc4ce9c4 | |||
c2f8038274 | |||
fc1deb0d7b | |||
|
d38034eec7 | ||
e7dc9e05ce | |||
93a9c6dea5 | |||
c1462047e4 | |||
|
1fc7dce354 |
24 changed files with 187 additions and 196 deletions
10
.github/workflows/deploy.yml
vendored
10
.github/workflows/deploy.yml
vendored
|
@ -1,11 +1,15 @@
|
|||
name: deploy
|
||||
concurrency: fogtype.com
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||
- run: install -m 700 -d ~/.ssh
|
||||
- run: install -m 600 <(echo '${{ secrets.DEPLOY_KEY }}') ~/.ssh/deploy_key
|
||||
- run: ssh -i ~/.ssh/deploy_key -o 'StrictHostKeyChecking no' kou029w@fogtype.com 'sh -c "cd ~/fogtype.com && git pull --rebase && docker compose up --detach --remove-orphans"'
|
||||
- run: install -m 600 <(echo '${{ secrets.DEPLOY_KEY }}') ~/.ssh/id_ed25519
|
||||
- run: install -m 600 <(echo '${{ secrets.KNOWN_HOSTS }}') ~/.ssh/known_hosts
|
||||
- run: make deploy
|
||||
|
|
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.deploy_key
|
||||
.deploy_key.pub
|
||||
.known_hosts
|
39
Makefile
Normal file
39
Makefile
Normal file
|
@ -0,0 +1,39 @@
|
|||
REMOTE_USER := nebel
|
||||
REMOTE_HOST := fogtype.com
|
||||
|
||||
.PHONY: help
|
||||
help:
|
||||
@cat README.md
|
||||
|
||||
.PHONY: deploy
|
||||
deploy:
|
||||
ssh $(REMOTE_USER)@$(REMOTE_HOST) <$@
|
||||
|
||||
.PHONY: install
|
||||
install: .deploy_key .known_hosts
|
||||
ssh-copy-id -i .deploy_key.pub $(REMOTE_USER)@$(REMOTE_HOST)
|
||||
scp install $(REMOTE_USER)@$(REMOTE_HOST):install
|
||||
ssh -t $(REMOTE_USER)@$(REMOTE_HOST) '\
|
||||
ssh-keygen -t ed25519; \
|
||||
cat ~/.ssh/id_ed25519.pub; \
|
||||
./install; \
|
||||
rm install; \
|
||||
'
|
||||
|
||||
.deploy_key:
|
||||
ssh-keygen -t ed25519 -C deploy_key -f $@
|
||||
|
||||
.known_hosts:
|
||||
ssh-keyscan -t ed25519 -H $(REMOTE_HOST) >$@
|
||||
|
||||
.PHONY: keyrings
|
||||
keyrings: \
|
||||
etc/apt/keyrings/docker-archive-keyring.gpg \
|
||||
etc/apt/keyrings/tailscale-archive-keyring.gpg \
|
||||
|
||||
etc/apt/keyrings/docker-archive-keyring.gpg:
|
||||
curl -sSf --tlsv1.3 https://download.docker.com/linux/ubuntu/gpg \
|
||||
| gpg --dearmor >$@
|
||||
|
||||
etc/apt/keyrings/tailscale-archive-keyring.gpg:
|
||||
curl -sSf --tlsv1.3 -o $@ https://pkgs.tailscale.com/stable/ubuntu/noble.noarmor.gpg
|
28
README.md
28
README.md
|
@ -1,23 +1,19 @@
|
|||
# Fogtype
|
||||
|
||||
## 前提
|
||||
## Runner Registration
|
||||
|
||||
- Docker Compose
|
||||
- systemd
|
||||
- systemd-journald
|
||||
|
||||
Git リポジトリを取得し、設定ファイルを配置
|
||||
|
||||
```bash
|
||||
ssh kou029w@fogtype.com
|
||||
git clone git@github.com:kou029w/fogtype.com.git
|
||||
cd fogtype.com
|
||||
sudo install -m 644 {,/}etc/docker/daemon.json
|
||||
sudo systemctl restart docker
|
||||
```
|
||||
$ make install
|
||||
```
|
||||
|
||||
## 構築
|
||||
secrets.DEPLOY_KEY
|
||||
: SSH identity file
|
||||
|
||||
secrets.KNOWN_HOSTS
|
||||
: SSH known_hosts file
|
||||
|
||||
## Deploy
|
||||
|
||||
```sh
|
||||
docker compose up -d
|
||||
```
|
||||
$ make deploy
|
||||
```
|
||||
|
|
84
compose.yml
84
compose.yml
|
@ -1,7 +1,7 @@
|
|||
name: keiunet
|
||||
name: fogtype
|
||||
services:
|
||||
https:
|
||||
image: caddy:2.6.4-alpine@sha256:eefd3d61e9ee8f35e046f614982d9a970006e3943c6e5f09957a4048f4c80d35
|
||||
image: caddy:2.8.4-alpine@sha256:221bcf3be161b0d856bdb7bea76b42386d732d19348f79692404829532d83f4a
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "80:80"
|
||||
|
@ -15,25 +15,8 @@ services:
|
|||
- caddy_config:/config
|
||||
networks:
|
||||
- fogtype
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
dns:
|
||||
image: coredns/coredns:1.10.1@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e
|
||||
restart: unless-stopped
|
||||
expose: ["443"]
|
||||
ports:
|
||||
- "53:53/udp"
|
||||
- "53:53/tcp"
|
||||
- "853:853"
|
||||
- "127.0.0.1:9153:9153"
|
||||
volumes:
|
||||
- ./etc/coredns:/etc/coredns
|
||||
- caddy_data:/var/lib/caddy/data
|
||||
command: "-conf /etc/coredns/Corefile"
|
||||
networks:
|
||||
- fogtype
|
||||
gts:
|
||||
image: superseriousbusiness/gotosocial:0.8.1@sha256:074c70e3af44289af590dc663015c43b9c789d476d9e00c3565678f179e82e04
|
||||
image: superseriousbusiness/gotosocial:0.16.0@sha256:54c0e2833f426b810861d8bc7b5633ca8119f2fa234a4ddaeb422519c04fca97
|
||||
restart: unless-stopped
|
||||
expose: ["8080"]
|
||||
environment:
|
||||
|
@ -48,51 +31,38 @@ services:
|
|||
command: "--config-path /etc/gotosocial/config.yaml"
|
||||
networks:
|
||||
- fogtype
|
||||
vikunja-api:
|
||||
image: vikunja/api:0.20.4@sha256:0f8e00f99120ac677de0764b054e4402f7046077004ff5e26f9146adfaf8b0af
|
||||
maddy:
|
||||
image: foxcpp/maddy:0.7.1@sha256:6ab538e2f28baf2324f7cb418c7f9476fd9c7e9fa9b14bc3aecf51a9f6962064
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "25:25"
|
||||
- "465:465"
|
||||
- "993:993"
|
||||
environment:
|
||||
VIKUNJA_SERVICE_FRONTENDURL: https://task.fogtype.com/
|
||||
VIKUNJA_SERVICE_ENABLEREGISTRATION: "false"
|
||||
VIKUNJA_DATABASE_TYPE: sqlite
|
||||
VIKUNJA_DATABASE_PATH: files/vikunja.db
|
||||
volumes:
|
||||
- "vikunja_data:/app/vikunja/files"
|
||||
networks:
|
||||
- fogtype
|
||||
vikunja-frontend:
|
||||
image: vikunja/frontend:0.20.5@sha256:5aad76d28c5dd8f5f5f4e6d5ba3459138676d37e5f79747f53ce64a52ba78b56
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- fogtype
|
||||
mox:
|
||||
image: r.xmox.nl/mox:v0.0.3-go1.20.3-alpine3.17.3@sha256:12f8a485d8a19cb31625da84d685897acf49568241d350fc6a0dc5e68dbc3cab
|
||||
restart: on-failure
|
||||
network_mode: host
|
||||
environment:
|
||||
MOX_DOCKER: "yes"
|
||||
MADDY_HOSTNAME: fogtype.com
|
||||
MADDY_DOMAIN: fogtype.com
|
||||
volumes:
|
||||
- ./etc/maddy:/etc/maddy
|
||||
- caddy_data:/var/lib/caddy/data:ro
|
||||
- mox_data:/mox/data
|
||||
- mox_config:/mox/config
|
||||
- type: bind
|
||||
source: ./etc/mox/config/mox.conf
|
||||
target: /mox/config/mox.conf
|
||||
- type: bind
|
||||
source: ./etc/mox/config/domains.conf
|
||||
target: /mox/config/domains.conf
|
||||
healthcheck:
|
||||
test: "netstat -nlt | grep ':25 '"
|
||||
interval: "1s"
|
||||
timeout: "1s"
|
||||
retries: 10
|
||||
- maddy_data:/data
|
||||
headscale:
|
||||
image: headscale/headscale:0.22.3@sha256:aadf29a875bb2ffdf6579869e5759935f7a64b9fd19fcea9d5385c5d7220dc7b
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3478:3478/udp"
|
||||
- "127.0.0.1:9200:9200"
|
||||
volumes:
|
||||
- ./etc/headscale:/etc/headscale
|
||||
- headscale_data:/var/lib/headscale
|
||||
networks:
|
||||
- fogtype
|
||||
command: headscale serve
|
||||
volumes:
|
||||
caddy_data:
|
||||
caddy_config:
|
||||
gotosocial_data:
|
||||
vikunja_data:
|
||||
mox_data:
|
||||
mox_config:
|
||||
maddy_data:
|
||||
headscale_data:
|
||||
networks:
|
||||
fogtype:
|
||||
ipam:
|
||||
|
|
9
deploy
Executable file
9
deploy
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
cd "${HOME}/${REMOTE_HOST:-fogtype.com}"
|
||||
|
||||
git pull --rebase
|
||||
docker compose up --detach --remove-orphans
|
||||
|
||||
cd -
|
1
etc/apt/apt.conf.d/99-tailscale
Normal file
1
etc/apt/apt.conf.d/99-tailscale
Normal file
|
@ -0,0 +1 @@
|
|||
Unattended-Upgrade::Allowed-Origins:: "Tailscale:*";
|
BIN
etc/apt/keyrings/docker-archive-keyring.gpg
Normal file
BIN
etc/apt/keyrings/docker-archive-keyring.gpg
Normal file
Binary file not shown.
BIN
etc/apt/keyrings/tailscale-archive-keyring.gpg
Normal file
BIN
etc/apt/keyrings/tailscale-archive-keyring.gpg
Normal file
Binary file not shown.
5
etc/apt/sources.list.d/docker.sources
Normal file
5
etc/apt/sources.list.d/docker.sources
Normal file
|
@ -0,0 +1,5 @@
|
|||
Types: deb
|
||||
URIs: https://download.docker.com/linux/ubuntu
|
||||
Suites: noble
|
||||
Components: stable
|
||||
Signed-By: /usr/share/keyrings/docker-archive-keyring.gpg
|
5
etc/apt/sources.list.d/tailscale.sources
Normal file
5
etc/apt/sources.list.d/tailscale.sources
Normal file
|
@ -0,0 +1,5 @@
|
|||
Types: deb
|
||||
URIs: https://pkgs.tailscale.com/stable/ubuntu
|
||||
Suites: noble
|
||||
Components: main
|
||||
Signed-By: /usr/share/keyrings/tailscale-archive-keyring.gpg
|
|
@ -1,30 +1,30 @@
|
|||
keiu.net, www.keiu.net {
|
||||
redir https://fogtype.com{uri} 308
|
||||
}
|
||||
read.keiu.net {
|
||||
redir https://rad.fogtype.com{uri} 308
|
||||
}
|
||||
fogtype.com {
|
||||
handle /.well-known/nostr.json {
|
||||
header access-control-allow-origin *
|
||||
header /.well-known/nostr.json access-control-allow-origin *
|
||||
@exists file
|
||||
handle @exists {
|
||||
file_server
|
||||
}
|
||||
reverse_proxy /.well-known/mta-sts.txt host.docker.internal:8081
|
||||
reverse_proxy http://gts:8080
|
||||
}
|
||||
www.fogtype.com {
|
||||
redir https://fogtype.com{uri} 308
|
||||
}
|
||||
dns.fogtype.com {
|
||||
reverse_proxy /dns-query https://dns {
|
||||
transport http {
|
||||
tls_server_name dns.fogtype.com
|
||||
}
|
||||
net.fogtype.com {
|
||||
reverse_proxy headscale:8080
|
||||
}
|
||||
mta-sts.fogtype.com {
|
||||
handle /.well-known/mta-sts.txt {
|
||||
file_server
|
||||
}
|
||||
redir / /.well-known/mta-sts.txt
|
||||
}
|
||||
task.fogtype.com {
|
||||
reverse_proxy /.well-known/* vikunja-api:3456
|
||||
reverse_proxy /api/* vikunja-api:3456
|
||||
reverse_proxy /dav/* vikunja-api:3456
|
||||
reverse_proxy vikunja-frontend:80
|
||||
openpgpkey.fogtype.com {
|
||||
header access-control-allow-origin *
|
||||
handle /.well-known/openpgpkey/* {
|
||||
file_server
|
||||
}
|
||||
redir / /.well-known/openpgpkey/fogtype.com/hu/k5iarqu189w6rpg6immh6a3sdiyse3kp
|
||||
}
|
||||
git.fogtype.com {
|
||||
reverse_proxy http://rho.fogtype.com:3000
|
||||
}
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
https://. tls://. . {
|
||||
tls /var/lib/caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/dns.fogtype.com/dns.fogtype.com.crt /var/lib/caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/dns.fogtype.com/dns.fogtype.com.key
|
||||
reload
|
||||
prometheus 0.0.0.0:9153
|
||||
cache 10
|
||||
hosts {
|
||||
fallthrough
|
||||
}
|
||||
forward . tls://1.1.1.1 tls://1.0.0.1 {
|
||||
tls_servername tls.cloudflare-dns.com
|
||||
}
|
||||
}
|
|
@ -1,4 +1,3 @@
|
|||
{
|
||||
"live-restore": true,
|
||||
"log-driver": "journald"
|
||||
}
|
||||
|
|
18
etc/headscale/config.yaml
Normal file
18
etc/headscale/config.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
server_url: https://net.fogtype.com
|
||||
listen_addr: 0.0.0.0:8080
|
||||
metrics_listen_addr: 0.0.0.0:9200
|
||||
db_type: sqlite3
|
||||
db_path: /var/lib/headscale/db.sqlite
|
||||
private_key_path: /var/lib/headscale/private.key
|
||||
noise:
|
||||
private_key_path: /var/lib/headscale/noise_private.key
|
||||
ip_prefixes:
|
||||
- fd7a:115c:a1e0::/48
|
||||
- 100.64.0.0/10
|
||||
derp:
|
||||
server:
|
||||
enabled: true
|
||||
region_id: 999
|
||||
region_code: "headscale"
|
||||
region_name: "Headscale Embedded DERP"
|
||||
stun_listen_addr: "0.0.0.0:3478"
|
1
etc/maddy/aliases
Normal file
1
etc/maddy/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
postmaster@fogtype.com: nebel@fogtype.com
|
|
@ -1,45 +0,0 @@
|
|||
Domains:
|
||||
fogtype.com:
|
||||
LocalpartCatchallSeparator: +
|
||||
DKIM:
|
||||
Selectors:
|
||||
2023a:
|
||||
Expiration: 72h
|
||||
PrivateKeyFile: dkim/2023a._domainkey.fogtype.com.key.pkcs8.pem
|
||||
2023b:
|
||||
Expiration: 72h
|
||||
PrivateKeyFile: dkim/2023b._domainkey.fogtype.com.key.pkcs8.pem
|
||||
Sign:
|
||||
- 2023a
|
||||
DMARC:
|
||||
Localpart: dmarc-reports
|
||||
Account: nebel
|
||||
Mailbox: DMARC
|
||||
MTASTS:
|
||||
PolicyID: 20230420T000000
|
||||
Mode: enforce
|
||||
MaxAge: 24h
|
||||
TLSRPT:
|
||||
Localpart: tls-reports
|
||||
Account: nebel
|
||||
Mailbox: TLSRPT
|
||||
Accounts:
|
||||
nebel:
|
||||
Domain: fogtype.com
|
||||
Destinations:
|
||||
nebel: nil
|
||||
SubjectPass:
|
||||
Period: 12h
|
||||
RejectsMailbox: Rejects
|
||||
AutomaticJunkFlags:
|
||||
Enabled: true
|
||||
JunkMailboxRegexp: ^(junk|spam)
|
||||
NeutralMailboxRegexp: ^(inbox|neutral|postmaster|dmarc|tlsrpt|rejects)
|
||||
JunkFilter:
|
||||
Threshold: 0.95
|
||||
Params:
|
||||
Onegrams: true
|
||||
MaxPower: 0.01
|
||||
TopWords: 10
|
||||
IgnoreWords: 0.1
|
||||
RareWords: 2
|
|
@ -1,39 +0,0 @@
|
|||
DataDir: ../data
|
||||
LogLevel: info
|
||||
User: 1000
|
||||
Hostname: fogtype.com
|
||||
CheckUpdates: true
|
||||
AdminPasswordFile: adminpasswd
|
||||
Listeners:
|
||||
internal:
|
||||
IPs:
|
||||
- 127.0.0.1
|
||||
AccountHTTP:
|
||||
Enabled: true
|
||||
Port: 8080
|
||||
AdminHTTP:
|
||||
Enabled: true
|
||||
Port: 8080
|
||||
MetricsHTTP:
|
||||
Enabled: true
|
||||
MTASTSHTTPS:
|
||||
Enabled: true
|
||||
Port: 8081
|
||||
NonTLS: true
|
||||
public:
|
||||
IPs:
|
||||
- ::
|
||||
TLS:
|
||||
KeyCerts:
|
||||
-
|
||||
CertFile: /var/lib/caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/fogtype.com/fogtype.com.crt
|
||||
KeyFile: /var/lib/caddy/data/caddy/certificates/acme-v02.api.letsencrypt.org-directory/fogtype.com/fogtype.com.key
|
||||
SMTP:
|
||||
Enabled: true
|
||||
Submissions:
|
||||
Enabled: true
|
||||
IMAPS:
|
||||
Enabled: true
|
||||
Postmaster:
|
||||
Account: nebel
|
||||
Mailbox: Postmaster
|
32
install
Executable file
32
install
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
set -eu
|
||||
|
||||
REPO=${REPO:-git@github.com:kou029w/fogtype.com.git}
|
||||
REMOTE_HOST=${REMOTE_HOST:-fogtype.com}
|
||||
PACKAGES="docker-ce docker-compose-plugin tailscale"
|
||||
|
||||
eval "$(
|
||||
apt-config shell APT_CONF_DIR Dir::Etc::parts/d
|
||||
apt-config shell APT_SOURCES_DIR Dir::Etc::sourceparts/d
|
||||
)"
|
||||
|
||||
sudo apt-get update -qq
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y -qq git rsync
|
||||
|
||||
git clone "${REPO}" "${HOME}/${REMOTE_HOST}" ||
|
||||
git -C "${HOME}/${REMOTE_HOST}" pull --rebase
|
||||
|
||||
cd "${HOME}/${REMOTE_HOST}"
|
||||
|
||||
sudo rsync -r etc/apt/keyrings/ /usr/share/keyrings/
|
||||
sudo rsync -r etc/apt/apt.conf.d/ "${APT_CONF_DIR}"
|
||||
sudo rsync -r etc/apt/sources.list.d/ "${APT_SOURCES_DIR}"
|
||||
sudo rsync -r etc/docker/ /etc/docker/
|
||||
|
||||
cd -
|
||||
|
||||
sudo apt-get update -qq
|
||||
# shellcheck disable=SC2086
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y -qq ${PACKAGES}
|
||||
|
||||
sudo gpasswd -a "$(whoami)" docker
|
|
@ -1,10 +1,9 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base",
|
||||
"config:best-practices",
|
||||
":automergeAll",
|
||||
":automergeBranch",
|
||||
":skipStatusChecks",
|
||||
"docker:enableMajor",
|
||||
"docker:pinDigests"
|
||||
":skipStatusChecks"
|
||||
]
|
||||
}
|
||||
|
|
1
srv/.well-known/atproto-did
Normal file
1
srv/.well-known/atproto-did
Normal file
|
@ -0,0 +1 @@
|
|||
did:plc:q2jocvzp6nzybaodbajtkqy4
|
4
srv/.well-known/mta-sts.txt
Normal file
4
srv/.well-known/mta-sts.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
version: STSv1
|
||||
mode: enforce
|
||||
max_age: 86400
|
||||
mx: fogtype.com
|
Binary file not shown.
1
srv/.well-known/openpgpkey/fogtype.com/policy
Normal file
1
srv/.well-known/openpgpkey/fogtype.com/policy
Normal file
|
@ -0,0 +1 @@
|
|||
# Policy flags for domain fogtype.com
|
Loading…
Add table
Reference in a new issue