2
0
Fork 0

Add redirects for creativeicing and gearbound

main
Ducky 2024-06-17 21:02:30 +02:00
parent 619e24ddd8
commit 6f86aaffc8
1 changed files with 3 additions and 1 deletions

View File

@ -40,8 +40,10 @@ func HandleWebfinger(w http.ResponseWriter, req *http.Request) {
func main() {
redirects = make(map[string][]string)
redirects["astra@gearheads.social"] = []string{"astra", "ap.zio.sh"}
redirects["ducky@gearheads.social"] = []string{"ducky", "ap.zio.sh"}
redirects["astra@gearheads.social"] = []string{"astra", "ap.zio.sh"}
redirects["creativeicing@gearheads.social"] = []string{"CreativeIcing", "rubber.social"}
redirects["gearbound@gearheads.social"] = []string{"gearbound", "rubber.social"}
http.HandleFunc("/.well-known/webfinger", HandleWebfinger)
http.ListenAndServe(":8888", nil)