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.

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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
Are you planning to use another web server like Nginx? You can host multiple applications on the droplet but you’ll need a web server like Nginx to set up your virtual hosts
To work with subdomains in your React app during development, you can use a combination of a local server like nginx and modify your hosts file. An example configuration will be:
- server {
- listen 80;
- server_name product.local;
- location / {
- proxy_pass http://localhost:3000;
- proxy_set_header Host $host;
- }
- }
For more information on setting up subdomains with DigitalOcean, you can check out our Nginx Server Blocks guide.
Regards