Can't deploy or install #37
Replies: 3 comments
-
Okay, I have made ONE of the configurations work: If I deploy on a fresh install debian the all-in-one using the instruction in the README.md (not in the documentation wiki) and THEN edit the docker-compose.yml to update the env variable from "localhost:port" to the actual public IP address of the host then it works... but how do I get this working behind a reverse proxy without having to any ports beyond the two port I have open to nginx that then proxies everything to my various containers? When I use a working site.conf for another container on the same host and just update the proxy_pass container to "all-in-one" which is the default name of the container I can get to the login page but nothing beyond that and the console says
|
Beta Was this translation helpful? Give feedback.
-
Hi @mnfctrdinitaly 👋 Sorry you're having trouble. I tried the DigitalOcean install and it appears to work as expected. Did you fill in values for these fields while deploying? Also, did you see any errors in the logs in DigitalOcean? Thanks, |
Beta Was this translation helpful? Give feedback.
-
I got it working... I used the all-in-one docker-compose.yml and updated the env variables. Are there issues or things I should fix in this? environment:
- VITE_FRONTEND_URL=https://subdomain.domain.tld
- VITE_API_URL_CLIENT=https://subdomain.domain.tld/api
- VITE_API_URL_SERVER=https://subdomain.domain.tld/api
- VITE_STRIPE_PUBLISHABLE_KEY=pk_test
- LOG_CHANNEL=stderr
- QUEUE_CONNECTION=sync
- MAIL_MAILER=array
- APP_KEY=secret
- JWT_SECRET=secret
- FILESYSTEM_PUBLIC_DISK=public
- FILESYSTEM_PRIVATE_DISK=local
- APP_DEBUG=TRUE
- APP_CDN_URL=https://subdomain.domain.tld/storage
- DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events
- APP_DISABLE_REGISTRATION=true
- APP_FRONTEND_URL=https://subdomain.domain.tld
- MAIL_MAILER=smtp
- MAIL_HOST=smtp.gmail.com
- MAIL_PORT=587
- MAIL_USERNAME=secret
- MAIL_PASSWORD=secret
- STRIPE_PUBLIC_KEY=secret
- STRIPE_SECRET_KEY=secret
- STRIPE_WEBHOOK_SECRET=secret |
Beta Was this translation helpful? Give feedback.
-
Help!
I have now installed this four different ways. In each version I get the same error message. There must be something I am doing wrong...
1. Deploy on Digital Ocean?
Front end loads, but upon registering it gives an "unexpected error"
2. Deploy on Railway?
Front end loads, but upon registering it gives an "unexpected error"
3. Deploy on a working docker/docker-compose host?
Front end loads, but upon registering it gives an "unexpected error"
4. Deploy locally on a fresh debian install?
Front end loads, but upon registering it gives an "unexpected error"
Is there some .env or config file that I am just struggling or forgetting or not knowing how to set? I have followed the guides step by step and (admittedly they sometimes are broken or link to 404 not found, so they aren't always the most helpful.)
Can someone please tell what I am doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions