BYOK Personal Data Server (PDS) written in Go
ipfs vow atproto pds go
0
fork

Configure Feed

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

fix: set session cookie secure flag based on TLS or forwarded proto

+1 -1
+1 -1
server/handle_account_signin.go
··· 124 124 Path: "/", 125 125 MaxAge: int(AccountSessionMaxAge.Seconds()), 126 126 HttpOnly: true, 127 - Secure: true, 127 + Secure: r.TLS != nil || r.Header.Get("X-Forwarded-Proto") == "https", 128 128 SameSite: http.SameSiteLaxMode, 129 129 } 130 130