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!
This comment has been deleted
it is amazingly nice tutorial but there are some minor issues with the following items;
It would be nice to put everything into one tutorial and explain all the points piece by piece
Dean, thanks for this, very useful, I keep struggling with memory allocation though. I cannot open 5GB data.table on 8 GB shiny server while Digital Ocean VM logs only show 33% memory use. If I upgrade to 16GB server all works well, but I don’t need 16GB. Any thoughts on how to deal with this memory allocation problem?
Had a problem installing shiny package on ubuntu with the line
sudo su - -c "R -e \"install.packages('shiny', repos='http://cran.rstudio.com/')\""
To work, changed to:
sudo su - -c "R -e \\"install.packages('shiny', repos='http://cran.rstudio.com/')\\""
My output from netstat -plunt is:
tcp6 0 0 :::3838 :::* LISTEN -
IOW it only appears to be listening on tcp6, and attempts to access over the web (going to mysite.org:3838) are timing out. Access to my site to normal https is just fine. Did I miss something in the configuration?
Hi - this was extremely helpful, except that I’ve already set up my droplet to use Apache as the server.
Could anyone provide guidance as to how to complete the (very important!) parts of “Step 3 — Securing Shiny Server with a Reverse Proxy and SSL Certificate” using Apache instead of nginx? Or does Shiny Server require nginx?