meathappening

joined 1 year ago
[–] meathappening@lemmy.ml 2 points 1 month ago

I had no issues walking in with my battery. They pulled a replacement from the shelf within 15 seconds.

[–] meathappening@lemmy.ml 0 points 1 month ago (3 children)

This is likely because I was considering installing it tonight.

But seriously, this sucks. I know Seerr keeps flirting with OIDC. I hope Jellyfin will take the plunge as well. At this point, I get kind of irritated when something I host doesn't support it.

[–] meathappening@lemmy.ml 18 points 1 month ago (4 children)

Ugh, I forgot about this. Aren't you still going to be able to install apps from third-party marketplaces? I thought the plan was just that the phone was going to hassle you and require multiple hoops.

[–] meathappening@lemmy.ml 28 points 1 month ago (9 children)

Syncthing is probably a simple fix.

[–] meathappening@lemmy.ml 25 points 1 month ago (1 children)

Coincidentally, I moved to self-hosting Vaultwarden last night, which is open source but compatible with Bitwarden. If you want a simple transition and are capable of hosting it yourself, that would be my recommendation.

[–] meathappening@lemmy.ml 2 points 1 month ago

Doesn't everyone who played the 2D games first share this opinion? The 3D games have their moments, but they're ludicrously imprecise and frustrating.

[–] meathappening@lemmy.ml 20 points 1 month ago (1 children)

Imo anyone who stayed with Plex after they required you to create an account is insane, especially considering there have always been good alternatives.

[–] meathappening@lemmy.ml 2 points 2 months ago

Yeah, I really like it! I'm surprised I don't see it pop up too often but I guess it's a relatively narrow use case.

[–] meathappening@lemmy.ml 16 points 2 months ago (1 children)

Genuinely no idea what PR hack thinks putting this dude in front of a microphone is a good idea. I've seen more of him in the past month than I can count, and pretty much each appearance is somehow worse than the last.

[–] meathappening@lemmy.ml 2 points 2 months ago

I also hopped back into ListenBrainz and Last.fm within the last year. Exactly like you said--they're not trying to sell something, so it was interesting to go back and see just how much that influences the recommendations.

The suggestions are better, I'm building up a local library again, and not paying for Spotify. What's not to love?

[–] meathappening@lemmy.ml 2 points 2 months ago (6 children)

Using this as well, but potentially shifting to Radicale. Nextcloud has pissed me off one too many times.

 

I'm using TinyAuth for forwardauth but the service I'm trying to use consistently is saying the headers are not set (and I can verify, they're not there.)

Traefik: in static config

entryPoints:
  web:
    address: ':80'
    transport:
      respondingTimeouts:
        readTimeout: 600s
        idleTimeout: 600s
        writeTimeout: 600s
    http:
      redirections:
        entryPoint:
          to: websecure
          scheme: https
  websecure:
    address: ':443'
    http:
      tls:
        certResolver: letsencrypt
        domains:
          - main: domain.tld
            sans:
              - '*.domain.tld'
    forwardedHeaders:
      trustedIPs:
        - [TinyAuth IP]

in dynamic config:

   tinyauth-auth:
     forwardAuth:
       address: "http://[TinyAuth IP]:3000/api/auth/traefik"
       trustForwardHeader: true
       authResponseHeaders:
         - Remote-User
         - Remote-Groups
         - Remote-Name
         - Remote-Email

This is set as a middleware in the app I'm trying to use.

in tinyauth:

TINYAUTH_APPURL=https://tinyapp.domain.tld/
TINYAUTH_AUTH_TRUSTEDPROXIES=[Traefik IP]
TINYAUTH_APPS_APP_CONFIG_DOMAIN='app.domain.tld'
TINYAUTH_APPS_APP_RESPONSE_HEADERS='Remote-User,Remote-Email,Remote-Group,Remote-Name,X-Remote-Name,X-Remote-User,X-Remote-Group,X-Remote-Email,Forwarded-Host,Forwarded-URI'

(I kept adding response headers hoping something would change)

PocketID is set as an OAuth provider and seems to be working fine, but I can provide further detail if needed.

Curiously, I tried changing the address in the traefik config to "https://tinyauth.domain.tld/" and the headers came through properly, but the redirect went to https://tinyauth.domain.tld/api/auth/traefik.

I think this is actually my issue but they never posted their solution.

view more: next ›