
docker-compose.yml:
x-logging: &x-logging
logging:
driver: 'json-file'
options:
max-file: '5'
max-size: '10m'
services:
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
- --entrypoints.appwrite_websecure.address=:443
restart: unless-stopped
ports:
- 82:80
- 445:443
localhost:82 shows 404. localhost:82/console shows the login, but when signup it shows 404 again.
Recommended threads
- Unable to connect. Is the computer able ...
I found that there was few other support tickets with same topic, but neither of those seemed to solve my issue. I'm running a function when new user is created...
- Functions rate limit
Is there a way to remove function rate limit for specific users? "2025-06-01T08:45:26.143734953Z [Error] Method: POST 2025-06-01T08:45:26.143738753Z [Error] UR...
- Can't create a function. The user interf...
I am trying to create a server-side function. I am on the free tier. **I already have three functions that work properly** that I created a few months ago. Now,...
