Catur
Catur
DDokploy
Created by Hussein on 11/4/2024 in #help
How to deploy my nextjs app
No description
49 replies
DDokploy
Created by Tony on 10/30/2024 in #help
upgrade
Please check at: setting > web server settings > updates Here are the references https://docs.dokploy.com/en/docs/core/server/overview#updates
2 replies
DDokploy
Created by jordans231 on 11/2/2024 in #help
Port issue
I feel like your container is not using the port correctly, remember that NGINX runs on port 80, try the config .yml below to test NGINX on your compose file, then point your domain to your server.
networks:
dokploy-network:
external: true

services:
web:
image: nginx:latest
labels:
- "traefik.enable=true"
- "traefik.http.routers.testing.entrypoints=websecure"
- "traefik.http.routers.testing.tls.certResolver=letsencrypt"
networks:
dokploy-network:
external: true

services:
web:
image: nginx:latest
labels:
- "traefik.enable=true"
- "traefik.http.routers.testing.entrypoints=websecure"
- "traefik.http.routers.testing.tls.certResolver=letsencrypt"
In my opinion, as long as you use Dokploy, you don't need NGINX for your reverse proxy anymore, we only need to set the domain directly in Dokploy. Why on your api service, you use php:8.2-fpm image? I don't understand what you mean, I think you need to include your application image. Hope that answers your question, correct me if I'm wrong.
4 replies