jceyrac
jceyrac
Thanks for your replies @CoderCharm and @haviduck! About the first the first solution, unfortunately it seems that lsof is not installed by default on the docker container, did you have...
Ok, I've installed lsof, so I guess now I need to find out which process and port the reload pre_start.sh script is using and are occupied? The lsof command is...
Thanks a lot for this example @abrichr ! But unfortunately I think I'm missing something in the configuration. Let me try the explain. I'm trying to setup a staging environment...
Thanks for your reply @abrichr and the update of the commands. Just before you came back to me I gave up setting up the staging environment to try to setup...
> Can you paste the code which issues this request? Sure! In the frontend, the call is initiated in the method "mounted" from a component `verva/frontend/src/components/CoinList.vue`: ```vue.js public async fetchPriceData(){...
Thanks for your reply @abrichr, much appreciated. I added the trailing at the end of the URI but I still have the Mixed active content issue unfortunately: ![Capture d’écran 2020-12-03...
I found the issue! In my code I'm calling the strapi CMS endpoint with the URI `https://verva.fr:1337/coins` whereas traefik changes it to `https://strapi.verva.fr/coins`: ```yaml - traefik.http.routers.${STACK_NAME?Variable not set}-strapi-http.rule=Host(`strapi.${DOMAIN?Variable not set}`)...