By Daniël
Student Creative Development
I am setting up an App Platform on Digital Ocean using a Strapi web service component as CMS and a Next.js web service component as Front-End. Strapi is accessible on the route /api and Next.js on /sporus. According to the runtime logs building and deployment are both successful and no errors are shown. When I try to access my Next.js web service through the route /sporus I am met with a 404 screen. Strapi on /api is working including the admin panels and requests.
Next.js Webservice is accessible through the /sporus route and does not return a 404.
##What I’ve tried
npm run start to next start -H 0.0.0.0 -p ${PORT:-8080} according to two guides by Digital Ocean tutorial(https://www.digitalocean.com/community/tutorials/how-to-deploy-a-next-js-app-to-app-platform) video(https://youtu.be/1ldjq5M7cbw?t=363).basePath: process.env.BASE_PATH to next.config.js according to the Next.js docsconst domains = (process.env.APP_URL) ? [process.env.APP_URL] : ['localhost'];
module.exports = {
reactStrictMode: false,
images: {
domains: domains,
},
basePath: process.env.BASE_PATH,
}
App wide:
- key: STRAPI_URL
scope: RUN_AND_BUILD_TIME
value: ${APP_URL}/api
- key: NEXT_PUBLIC_STRAPI_URL
scope: RUN_AND_BUILD_TIME
value: ${APP_URL}/api
- key: DATABASE_URL
scope: RUN_AND_BUILD_TIME
value: ${db.DATABASE_URL}
- key: APP_URL
scope: RUN_AND_BUILD_TIME
value: ${APP_URL}
Next component specific:
key: NEXT_URL
scope: RUN_AND_BUILD_TIME
value: ${APP_URL}/sporus
- key: BASE_PATH
scope: RUN_AND_BUILD_TIME
value: /sporus
I have very experience with D.G. App Platform & Next.js or deploying node.js servers in general. Most of my projects I run locally so I apologise if this question isn’t very descriptive. All additional debugging steps or general tips are welcome.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
So the answer is quite simpel. The App Platform already routes to /sporus. Adding /sporus to the baseUrl will create a double route making the app accesible on /sporus/sporus. Removing baseUrl from next.config.js fixes the issue.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.