NodeJS Essentials 45: Deploying to Digital Ocean

preview_player
Показать описание


Рекомендации по теме
Комментарии
Автор

I procrastinated launching my web app and deploying to Digital Ocean for years cos I found all this intimidating. Thanks to this video tutorial I have successfully deployed my Node API. Thank you very much for this.

mpilodlamini
Автор

Just a quick note, in order to install nginx, I had to run 'sudo apt update
', then 'sudo apt install nginx'. Thanks for the video! Super helpful!

charmito
Автор

I don't understand why I'm so scared to put something online... I'm always unsure if this is the current way to set up or if I might be missing something. There's SSL and CI which I'm not really familiar with but I read everywhere that they're quite mandatory. /sigh

paulocbbf
Автор

for the lazy ones:
```
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
```

shilangyu
Автор

need an expert advice for my node.js scaling

quintonnpwala
Автор

5:04 can a droplet just shut down and restart? Does this actually happen? That would break my application. I need it running uninterrupted.

alikabeer
Автор

Very informative tutorial 👍. Can you do a tutorial on how to add a domain with SSL Certificate in Digital Ocean?

mithuns
Автор

Thanks for the video, but i have a question, how would i host multiple nodejs projects?

MarsTheProgrammer
Автор

how do one set up an environment variable on digital ocean. thanks for the tutorial

hexanolmethane
Автор

Can someone please clarify this for me: Is the server on your device- in a sense that if you turn off your device, the virtual machine (which is the server) will turn off and thos the server goes offline....Basically do I need a spare PC to do this? or is everything handle on Digital ocean

eddieteah
Автор

how do i connect mongodb in digital ocean ?..do i need to purchase it separately or do i need to set it up like i do it in development on local machine ?

parasarora
Автор

Nice video. How can I add a React frontend?

raulsanchez
Автор

This only explains how to install and configure Nginx to show the website. Nothing on deployment.

nemnoton