your_spotify icon indicating copy to clipboard operation
your_spotify copied to clipboard

localhost nginx porxy manager

Open daxil34 opened this issue 2 years ago • 1 comments

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`

daxil34 avatar Aug 22 '22 08:08 daxil34

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.

Yooooomi avatar Aug 22 '22 14:08 Yooooomi

Closing for inactivity

Yooooomi avatar Dec 12 '22 18:12 Yooooomi