You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
similar situation on Docker Desktop (Windows - Italian) where with the standard docker-compose.yml it give me an error 405 (Method not Allowed) out of the box.
the docker-compose.yml is the one on website for desktop version
`version: '3.7'
I try seatsurfing.mydomain.com with Italian Language.
https://seatsurfing.mydomain.com/ui/it work fine
https://seatsurfing.mydomain.com doesn't work, after a timeout redirect me to /ui subpath and give me a 502 error Bad Gateway.
I use traefik for https...
similar situation on Docker Desktop (Windows - Italian) where with the standard docker-compose.yml it give me an error 405 (Method not Allowed) out of the box.
the docker-compose.yml is the one on website for desktop version
`version: '3.7'
services:
server:
image: seatsurfing/backend
restart: always
networks:
sql:
http:
ports:
- 8080:8080
environment:
POSTGRES_URL: 'postgres://seatsurfing:DB_PASSWORD@db/seatsurfing?sslmode=disable'
JWT_SIGNING_KEY: 'some_random_string'
BOOKING_UI_BACKEND: 'booking-ui:3001'
ADMIN_UI_BACKEND: 'admin-ui:3000'
PUBLIC_URL: 'https://seatsurfing.your-domain.com'
FRONTEND_URL: 'https://seatsurfing.your-domain.com'
booking-ui:
image: seatsurfing/booking-ui
restart: always
networks:
http:
environment:
FRONTEND_URL: 'https://seatsurfing.your-domain.com'
admin-ui:
image: seatsurfing/admin-ui
restart: always
networks:
http:
environment:
FRONTEND_URL: 'https://seatsurfing.your-domain.com'
db:
image: postgres:12
restart: always
networks:
sql:
volumes:
- db:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: DB_PASSWORD
POSTGRES_USER: seatsurfing
POSTGRES_DB: seatsurfing
volumes:
db:
networks:
sql:
http:`
for remote version I just add traefik network and the relative label
thanks
The text was updated successfully, but these errors were encountered: