Web and mobile apps both stuck loading

My Immich instance is behind a Caddy reverse proxy, and when I go to the instance from a local ip it works just fine, but if I try and access the instance from the domain, I get a constant loading screen. In my Firefox console, I get these errors:

https://photos.samu.lol/_app/immutable/assets/Overpass.DCP28BvT.ttf
[HTTP/3 525  116ms]

GET
https://photos.samu.lol/_app/immutable/assets/OverpassMono.XkUhFDDw.ttf
[HTTP/3 525  74ms]

GET
https://photos.samu.lol/_app/immutable/chunks/Ba5n93iS.js
NS_ERROR_CORRUPTED_CONTENT

GET
https://photos.samu.lol/_app/immutable/chunks/Ct5FWWRu.js
NS_ERROR_CORRUPTED_CONTENT

GET
https://photos.samu.lol/_app/immutable/chunks/Bwz28VST.js
NS_ERROR_CORRUPTED_CONTENT


My Caddy configuration looks like this:

photos.samu.lol {
    # TLS cert challenge stuff
    @acme_challenge {
        path /.well-known/acme-challenge/*
    }
    handle @acme_challenge {
        root * /var/lib/caddy/acme-challenges
        file_server
    }

    reverse_proxy 127.0.0.1:2283
}


There are no errors in my logs to go off of
Was this page helpful?