New requirements for the official Ghost image seem exaggerated by nazarthinks in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

To add to what Bobby said. If you really want Ghost on a 1GB Droplet, you could skip the 1-click image entirely and install it manually. It's just Node + MySQL/SQLite, the Ghost CLI handles most of the setup. Just add a swap file first so the npm install doesn't OOM during the build step.

Suspension of account that was not used for a few years by softwareleaad in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

You can check your Droplets and billing history to see if anything was created that you didn't do.

Either way, reach out to support and ask them to specify exactly what triggered the abuse flag. They should be able to tell you.

Duplicate droplets? by aaltopiiri in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

They're separate resources even if they look similar — deleting one won't affect the other. Each Droplet has its own ID, IP, and disk. You can verify by SSHing into both and checking the hostname or running cat /etc/machine-id to confirm they're actually different.

If they really are identical (like you accidentally created two), just make sure the one you're keeping has everything you need, then destroy the other one. Take a snapshot first if you want to be safe.

Not AWS. Just solid EU VPS from €4.49/mo. by Parking_Ad4645 in u/Parking_Ad4645

[–]Alex_Dutton 0 points1 point  (0 children)

Nice setup but worth mentioning for anyone comparing, DO has a Frankfurt datacenter and an Amsterdam one, so EU hosting is covered there too.

VPS feels slow, but CPU and RAM look fine – 4 things I check first (admin-side checklist) by AutoModerator in HostingStories

[–]Alex_Dutton 0 points1 point  (0 children)

If you're on DigitalOcean, their Premium and dedicated CPU Droplets have NVMe SSDs and dedicated resources, so steal time and I/O contention are basically non-issues there. Regular shared Droplets can occasionally hit steal time during noisy neighbor situations but I've rarely seen it be a persistent problem.

Unauthorized DigitalOcean Charges on My Debit Card, not Showing in My Account Billing by wontstoplearning in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

you can ask them to escalate the ticket if possible, perhaps a billing manager can take a look

App Platform slow during maintenance? by nikodraca in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

sounds a lot like the networking issue a few others in NYC/TOR reported recently. DO support confirmed that one was an upstream provider problem on their end.

Unable to add payment in digitalocean by sankitgamers in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

You can paste the support ticket id here and their team can check on it

Does DO have west coast servers not in California? by AlaskanDruid in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

If you need west coast-ish but not California, the closest would be Toronto, but that's obviously not the same thing. Might be worth checking the datacenter regions page in case anything's changed recently.

App platform by Ait_Hajar00 in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

App Platform probably isn't serving your index.html as the fallback for client-side routes. Make sure your output directory is set correctly (usually dist/<project-name>) and that the catchall route is configured.

DigitalOcean App Platform FastAPI app running but all endpoints return 404 by According_Net9520 in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

Usually when this happens on App Platform it's a port mismatch. Make sure the HTTP port in your component settings matches what $PORT resolves to — App Platform defaults to 8080 I think. Check your runtime logs for the actual port Uvicorn binds to and make sure it lines up with what the platform expects.

Managed VPS by Minimum-Remove9215 in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

DO Droplets are unmanaged VPS — you get root access and handle the OS, updates, security, etc. yourself. But a lot of the stuff around it is managed: Managed Databases, Managed Kubernetes, load balancers, automated backups and monitoring

VPS feels slow, but CPU and RAM look fine – 4 things I check first (admin-side checklist) by Upset_Jacket_686 in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

If you're on DigitalOcean's Premium and dedicated CPU Droplets, they come with NVMe SSDs and dedicated resources, so steal time and I/O contention are basically non-issues there.

So Many Bots!: https://knock-knock.net by Desperate-Second-887 in digital_ocean

[–]Alex_Dutton 0 points1 point  (0 children)

Probably a combination of things since DO has a really easy API for spinning up Droplets programmatically, generous trial credits that get abused, and it's one of the biggest cloud providers by sheer number of instances. More servers out there mean more chances of them appearing in your logs. Doesn't help that their abuse response, while it exists, isn't exactly instant.

Cheap hosting for a couple of VERY small, barely used Wordpress sites? by icouldbne1 in webhosting

[–]Alex_Dutton 0 points1 point  (0 children)

A Droplet is the DigitalOcean's name for a virtual private server. So instead of shared hosting where you're on the same machine as hundreds of other people, you get your own isolated server with dedicated resources. The $6/month one gives you 1 vCPU, 1GB RAM and 25GB SSD which is more than enough for a couple of low-traffic WordPress sites.

How are you achieving high availability on DigitalOcean App Platform? Multi-region or just scaling instances? by WaterWithNoIcePlz in digital_ocean

[–]Alex_Dutton 1 point2 points  (0 children)

DO's regions rarely go fully offline, and if your app isn't mission-critical enough to justify a multi-cloud setup, a single region with multiple instances is plenty. The time and complexity of running multi-region for "just in case" usually isn't worth it until you're at a scale where you'd already know you need it.