Reverse proxy setup does not work after upgrading to 2022.5

Hey everyone! I’m desperate enough to make a full post at this point. I have homeassistant and SWAG running on a docker-compose instance, with homeassistant running previously on some old version (working correctly on an https domain). SWAG hosts my reverse proxy and currently correctly works for other services like Nextcloud. When I run HA now, I get:

2022-05-21 00:50:31 ERROR (MainThread) [homeassistant.components.http.forwarded] A request from a reverse proxy was received from 172.24.0.3, but your HTTP integration is not set-up for reverse proxies

This is unusual to me, since I already have this set up in my configuration.yaml file:

    trusted_proxies: 
        # - 192.168.3.38/24
        - 172.24.0.3

I’ve tried tons of other combinations as well, I am beginning to believe there are other things I need to include here, but the docs only really say that I need this and use_x_forwarded_for: true and maybe cors_allowed_origins: (which I have for my base domain)

Any ideas?