Im self-hosting appwrite using docker compose and then exposing with cloudflared/zero trust tunnel system I tried solutions from other support threads but none of them seem to be working. This includes the env variable _APP_OPTIONS_FORCE_HTTPS
when I enabled that my whole instance just takes ages to load anything (basically unusable).
Could it be a issue that im not exposing it over 80 or 443 but instead changed it to port 8003:
traefik:
image: traefik:2.11
container_name: appwrite-traefik
<<: *x-logging
command:
- --providers.file.directory=/storage/config
- --providers.file.watch=true
- --providers.docker=true
- --providers.docker.exposedByDefault=false
- --providers.docker.constraints=Label(`traefik.constraint-label-stack`,`appwrite`)
- --entrypoints.appwrite_web.address=:80
restart: unless-stopped
ports:
- 8003:80
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- appwrite-config:/storage/config:ro
- appwrite-certificates:/storage/certificates:ro
depends_on:
- appwrite
networks:
- gateway
- appwrite
Recommended threads
- Edit DB with external tool
Hello, is there a way of interacting with the db with other tools? I have exposed the mariaDB port and tried connecting to it with nocoDB or similar servies but...
- Functions runtime specifications not cha...
It seems that the changes revert to their original state when deployed.
- Error 400: General_Bad_Request in react ...
I am suddenly started getting this 400 error in my react native app using expo. It seems identify to the situation described [here](https://github.com/appwrite/...