Help with nginx conf for mealie

Ok so… I fixed it!!!

I did some more troubleshooting and saw that my nginx config was not being copied into the Docker container using this command

sudo docker exec swag ls /config/nginx/proxy-confs | grep mealie

I re-read my Docker compose file…
And because I was following along with the Cloudflare DNS setup guide and the regular SWAG setup guide…
I didn’t realize that they had the same SWAG volume twice!

    volumes:
      - /etc/config/swag:/config
      - /home/aptalca/appdata/swag:/config

So I fixed the volumes

    volumes:
      - /etc/config/swag:/config

And re-created my containers and volumes just to be safe

docker compose down
docker compose down -v
docker compose up --build -d

Re-configured Cloudflare and my nginx proxy and bam it worked!
Of course my browser was still caching the Welcome page so I tested incognito and all is well now!!!