this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add dongs.zip domain support + did web step 1

+46 -3
+45 -3
caddy/Caddyfile
··· 34 34 redir https://{$HOST:localhost}{uri} 35 35 } 36 36 37 - 38 - dong.{$HOST:localhost} { 37 + {$DONG:dong-zip.localhost} { 39 38 log dong { 40 39 output stdout 41 40 format console ··· 45 44 root /srv/dong-web 46 45 import error 47 46 file_server 47 + } 48 + 49 + dong.{$HOST:localhost} { 50 + redir https://{$DONG:dong-zip.localhost}{uri} 48 51 } 49 52 50 53 saltire-the-gays.{$HOST:localhost} { ··· 117 120 reverse_proxy {$PI_ADDRESS:pi}:5555 118 121 } 119 122 120 - alt.{$HOST:localhost} { 123 + alt.vielle.dev { 121 124 handle /.well-known/atproto-did { 122 125 header Access-Control-Allow-Origin "*" 123 126 respond "did:web:alt.vielle.dev" ··· 154 157 ] 155 158 } 156 159 JSON 200 160 + } 161 + 162 + dongs.zip { 163 + handle /.well-known/atproto-did { 164 + header Access-Control-Allow-Origin "*" 165 + respond "did:web:dongs.zip" 166 + } 167 + 168 + handle /.well-known/did.json { 169 + header Content-Type "application/json" 170 + header Access-Control-Allow-Origin "*" 171 + respond <<JSON 172 + { 173 + "@context": [ 174 + "https://www.w3.org/ns/did/v1", 175 + "https://w3id.org/security/multikey/v1", 176 + "https://w3id.org/security/suites/secp256k1-2019/v1" 177 + ], 178 + "id": "did:web:dongs.zip", 179 + "alsoKnownAs": [ 180 + "at://dongs.zip" 181 + ], 182 + "verificationMethod": [ 183 + { 184 + "id": "did:web:dongs.zip#atproto", 185 + "type": "Multikey", 186 + "controller": "did:web:dongs.zip", 187 + "publicKeyMultibase": "zQ3shbAWjmNZGNRMDPxoZkXnfcVKBT2moNMibdwtJ4tQgRhaJ" 188 + } 189 + ], 190 + "service": [ 191 + { 192 + "id": "#atproto_pds", 193 + "type": "AtprotoPersonalDataServer", 194 + "serviceEndpoint": "https://pds.vielle.dev" 195 + } 196 + ] 197 + } 198 + JSON 200 157 199 }
+1
compose.yaml
··· 27 27 - caddy_config:/config 28 28 environment: 29 29 HOST: vielle.dev 30 + DONG: dongs.zip 30 31 depends_on: 31 32 - prs 32 33 - landing