your_spotify
your_spotify copied to clipboard
localhost nginx porxy manager
hello I have a problem with "nginx proxy manager" when i want to log in it redirects me to localhost
and here is my docker-compose:
`version: "3"
services: server: image: yooooomi/your_spotify_server restart: always container_name: server_spotify links: - mongo depends_on: - mongo environment: - API_ENDPOINT=http://server_spotify:8080 # This MUST be included as a valid URL in the spotify dashboard - CLIENT_ENDPOINT=http://web_spotify:3000 - SPOTIFY_PUBLIC= - SPOTIFY_SECRET= - CORS=all mongo: container_name: mongo restart: always image: mongo:4.4.8 volumes: - "/root/config/mongo:/data/db" - "/etc/localtime:/etc/localtime:ro"
web: image: yooooomi/your_spotify_client restart: always container_name: web_spotify environment: - API_ENDPOINT=http://server_spotify:8080
networks: default: external: name: name_network_npm`
Hello, the endpoints you are specifying must be accessible from the device the browser is on. The endpoints wrote as container names cannot be accessed from outside a docker. Please set a local / public ip for them to be accessible. Don't forget to open the necessary ports in the containers.
Closing for inactivity