3,976 questions
0
votes
0
answers
69
views
Deploying a Digital Ocean Go serverless function with outside libraries
I am unable to build/deploy a digital ocean function that relies on nonstandard libraries (some third party, others local). I have three projects: an API, the DO functions, and a common library used ...
-4
votes
1
answer
56
views
PG::InsufficientPrivilege error using Digital Ocean's App Platform and a connected dev database for a Rails 8 app
I have a Rails 8 application using an attached dev database and I am deploying to the Digital Ocean App Platform. I can successfully build the application and when I get to the deploy step I see this ...
0
votes
2
answers
42
views
Next.js multilingual routing. Main page site.com always redirect to site.com/en instead of staying on site.com
devs!
I'm trying to build a multilingual website based on Next.js(15.6) Node 22.21.10. Locally I have no issue with routing everything works as expected. Both lang versions are served as expected. (...
1
vote
0
answers
42
views
How to deploy monorepo Dockerfile to Digital Ocean App Platform
I'm attempting to configure a two-component (frontend + backend) monorepo deployment using Digital Ocean's App Platform. I'm starting with the backend. The monorepo looks like:
client/ <-- NextJS ...
0
votes
0
answers
32
views
How to configure Nginx for a WordPress root domain while preserving dynamic MERN app routes?
I’d appreciate some advice from experienced DevOps or full-stack engineers.
We have a SaaS product built with the MERN stack, currently running on example.com.
Current setup:
Backend API → api.example....
0
votes
0
answers
80
views
SSL error on some Android devices (Redmi Note 11, Android 13) when loading image from DigitalOcean Spaces
I have an Android app where I load images either using Glide + PhotoView or fallback to WebView. For most users everything works fine, but on some devices (for example Redmi Note 11, Android 13) the ...
0
votes
1
answer
40
views
"Internal Server Error" when sending email via Django using DigitalOcean
When trying to send an email from a Django production setup (using gunicorn) on a Digitalocean droplet, I get "Internal Server Error" on the browser, and gunicorn logs this error:
…
File &...
1
vote
1
answer
82
views
sh: 1: nest: not found when deploying Nestjs app to DigitalOcean
I have nestjs app that works fine in development mode, but when I deploy it to DigitalOcean I have an error:
[2025-08-19 00:04:35] │ sh: 1: nest: not found
When I change NODE_ENV in environment ...
0
votes
1
answer
187
views
How do you dotnet publish -t:PublishContainer to DigitalOcean
I am trying to push the docker image directly (without Docker) to my private registry in DigitalOcean. I used these two pages as guidelines.
https://learn.microsoft.com/en-us/dotnet/core/containers/...
0
votes
1
answer
68
views
Intermittent 403 Errors with Spring Security App Deployed on Digital Ocean
I have my spring boot / security being hosted by digital ocean and I am trying to access it from my local machine. I am seeing intermittent 403 errors for the authenticated endpoints. It is really ...
0
votes
1
answer
134
views
Digital Ocean Function returning generic error code after adding log forwarding
I'm testing a simple function (python) in Digital Ocean App Platform. The function imports psycopg2, connects to an attached Postgres DB, and returns the DB's version. This function was working until ...
1
vote
1
answer
102
views
Function in Digital Ocean Returning Errors Cannot Import Module and Cannot Connect to Database
I have a simple Python function I've deployed as a Digital Ocean Function. However, the Function errors out on importing psycopg2.
The function:
import os
import psycopg2
def get_db_connection():
...
0
votes
0
answers
51
views
DigitalOcean node.js function invoke returns Error [ERR_MODULE_NOT_FOUND]: Cannot find package '@google-cloud/documentai'
I am trying to create a DO serverless function.
Everything is functional on my local, but after I deploy the function an try to run it on DO, I get the ERR_MODULE_NOT_FOUND error, for most of the ...
0
votes
1
answer
90
views
Unexpected error: No such file or directory: 'ffprobe', while using pydub in Digital Ocean
I have an app that processes audio files and converts them to 'wav' format. This works locally on my Mac, however in DigitalOcean, when recording audio, i get the below error, followed by a 500:
warn(&...
1
vote
0
answers
98
views
How to connect to DigitalOcean managed db from Github actions to run DB migrations?
Im new to DevOps and I have a dockerized Django app. I use Github actions to push containers to Docker Container Registry which works pretty neat. But when it comes to applying migrations to a DO ...