Questions tagged [droplet]

105 questions
1
vote
0 answers

Howto install a nodejs app on Digital Ocean

I try to install https://github.com/aepsilon/turing-machine-viz on a Digital Ocean doplet. I did git clone https://github.com/aepsilon/turing-machine-viz cd ./turing-machine-viz npm install npm start But I'm unable to get my web page. Any clue ?
Peter Estiven
  • 414
  • 1
  • 7
  • 16
1
vote
1 answer

ATG - session or request attribute coming as null when checkFormRedirect is called

In my ATG application, when I am redirecting user to jsp page with some parameters using checkFormRedirect, I am getting parameters as null. Please see below FormHandler code: UserFormHandler: public boolean handleUserRedirect(dynamo req, dynamo…
Manan Kapoor
  • 675
  • 1
  • 11
  • 28
1
vote
1 answer

Config Nginx running Nodejs on Centos 7

I'm installing nodejs and nginx on my centos 7. My app works fine on my_domain:3000 but error on my_domain.com with message The page you are looking for is temporarily unavailable. Please try again later. This is my nginx.conf. Pls…
Akshay Pitale
  • 96
  • 1
  • 8
1
vote
0 answers

Automating DO droplet code deployment from Bitbucket

I am planning to migrate from shared hosting to Digital Ocean and i have my complete code in bitbucket repo. I have launched an ubuntu 16.0.4 droplet with LAMP stack. Is there a way i could automate to deploy code to DO droplet for each commit to…
vineeth c
  • 21
  • 6
1
vote
0 answers

Problems running Airflow on a Droplet server with supervisor

I have a small ETL to configure for which it was decided to use Airflow within a server. Airflow scheduler and webserver is started using supervisor and I get no error when doing so, supervisorctl status shows: airflow-scheduler …
user6771469
1
vote
0 answers

Run Mail-in-a-Box in the same digital ocean droplet as my website API

I have a domain registered with Godaddy called example.com I am running a REST API and my basic html website on the same droplet. Now I want to run our own mail server, I read the article on…
Mujtaba
  • 19
  • 1
  • 6
1
vote
1 answer

rails puma nginx 111: Connection refused

/shared/tmp/sockets/autostudy-puma.sock failed (111: Connection refused) while connecting to upstream, client: 37.188.181.170, server: www.autostudy.cz how to fix this…
1
vote
1 answer

How do I allow client to access specific folders within a Digital Ocean droplet via FTP?

I have installed a LEMP stack on Ubuntu 16.04, added server blocks for different sites but I would like to be able to allow clients to access their files without having complete access to the server. I have followed this guide…
designfreak
  • 51
  • 1
  • 6
1
vote
2 answers

How do I programmatically get the Digital Ocean ID of the current Droplet from within the Droplet?

I am setting up monitoring and log aggregation on my AWS and Digital Ocean servers, and I want to be able to include a Droplet ID in the meta-data for my log messages from Digital Ocean. On AWS there is a way to get the Instance ID from inside the…
Mnebuerquo
  • 5,759
  • 5
  • 45
  • 52
1
vote
0 answers

Platypus Droplet Text change

I have created a Platypus app for my Python script. I am using 'Droplet' interface to provide input file to my script. However, I would like to modify the standard message 'Drop files here'. Is there anyway I can do that in Platypus? Thanks Vik
Vik Singh
  • 1,563
  • 2
  • 19
  • 36
1
vote
1 answer

Why Vapor / Droplet does not receive JSON?

Sending a JSON to local service, but it does not receive it, why? let config = try Config() try config.setup() let drop = try Droplet(config) try drop.setup() drop.get(handler: {req in if req.json != nil { print("ass") …
János
  • 32,867
  • 38
  • 193
  • 353
1
vote
1 answer

MongoDB lost in droplet Digital Ocean

I've built a Django web app on a droplet of Digital Ocean. The app was working fine. Today, when I opened my web app, no data appeared. I had a look at the droplet (server), and I found that all data in my mongodb is lost. Especially, when I type…
lenhhoxung
  • 2,530
  • 2
  • 30
  • 61
1
vote
3 answers

How to debug droplets using AppleScript

Just 3 lines of script to be able to test a droplet application without leaving applescript editor set fich to POSIX file "/Appli/conv2spct.app" as string tell application "Finder" to open POSIX file "/Users/yourusername/Desktop/somefile" using…
deek5
  • 367
  • 1
  • 13
0
votes
0 answers

Deploying MERN stack application via DigitalOcean

Error even after changing local host to the droplet ip address I have been trying to deploy MERN stack application via Digitalocean. i created the application on the ubuntu machine droplet added necessary dependencies and even changed the routes…
0
votes
0 answers

Deploy multiple Node.js web api with two different repositories with Gitlab CI/CD and pm2 on a single instance

I have two separate web api code written using express.js from two different repositories and would like to automatically deploy it to the Ubuntu 20.04 on a single instance on different ports using pm2 with gitlab CI/CD. I tried it that way but when…