Bonjour,
J’ai cette erreur qui lorsque j’essaye de me connecter à mon adresse url public pour paramétrer mon lecteur dynamique.
Voici l’erreur que j’ai :
We encountered an error when reaching this balena.io device:
UUID 60034b7916cfed7c60e203a8eb27b3ca
tunneling socket could not be established: 500
One possible reason is because nothing is listening on port 80 on the device.
POURTANT, j’ai ouvert tous les ports et j’ai suivi la technique donnée par BALENA ( voir en pièce jointe)
Merci d’avance, je suis vraiment bloqué dans ma configuration
Hello, that error usually means that the service (your “dynamic player?”) you expect to find on your public URL is not listening on port 80 on the device. You can map the port the service is using to port 80 on your host by using the ports feature in your docker-compose file: Compose file version 2 reference | Docker Documentation For instance, if your service is using port 5050, you would add a ports: entry of 80:5050 to map it to the public URL.
Merci pour votre aide je vais voir comment faire pour que ce la fonctionne.
Malheuresement j’ai un probleme lorsque je pousse le code sur balena le lecteur dynnamique ne fonctionne pas ( ecran noire) et il y a des codes erreurs suivants :
2023-06-21T12:03:30+02:00 main npm ERR! missing script: start
2023-06-21T12:03:30+02:00 main
2023-06-21T12:03:30+02:00 main npm ERR! A complete log of this run can be found in:
2023-06-21T12:03:30+02:00 main npm ERR! /root/.npm/_logs/2023-06-21T10_03_30_570Z-debug.lo
et aussi :
2023-06-21T12:03:30+02:00 main npm ERR! missing script: start
2023-06-21T12:03:30+02:00 main
2023-06-21T12:03:30+02:00 main npm ERR! A complete log of this run can be found in:
2023-06-21T12:03:30+02:00 main npm ERR! /root/.npm/_logs/2023-06-21T10_03_30_570Z-debug.lo
Hello, that error seems like you might not have defined a start script in your package.json file or your project does not contain a server.js file. Can you post more information about your project or a repo link if it is public?