How to run CraftCMS in subfolder with Nginx
I'm trying to create a Nginx config which uses PHP-FPM for all routes starting with /craft and another proxy for all other routes (which should serve an Next.js app): # Next.js upstream config upstream nextjs { server host.docker.internal:3000; } #…