Is there anything useful in log files?
Laravel Nova Docker
Hello there, I been Using Nova for more than a year and I do love it. Just now I did a migration to a new server and I decide to migrate my Laravel App to a Docker Containers and All is working fine but Nova is not login at all (Refresh without giving error). I can not find this issue in not forums that means that i am the only stupid that have this problem. Can you point me in the right direction? I cannot find it in not forum. I think is a problem with the ssl using lets-encrypt but my front-end login is working fine. In case I will add a few of the details that I use in my docker-compose service Ngnx. But all this is working fine just with the other website that I have just is the Laravel Nova Back-end this is why doesn't make sense
I do use Nginx-proxy-Manager to direction all the websites.
proxy:
image: jc21/nginx-proxy-manager:latest
restart: always
container_name: proxy
ports:
- 80:80
- 443:443
- 81:81
volumes:
- ./config.json:/app/config/production.json
- ./data:/data
- ./data/letsencrypt:/etc/letsencrypt
depends_on:
- db
#Nginx Service For Development Only
site:
image: nginx:stable-alpine
container_name: site
hostname: website.test
ports:
- "82:80"
- "1443:443"
volumes:
- ./src:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/
- ./nginx/certs/:/etc/nginx/certs/
depends_on:
- php
- mysql
networks:
- website
Please or to participate in this conversation.