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!
If you’re struggling to get past the authentication screen, you may be making the same mistake as I made.
At step 1 you are presented with two options for creating the .htpasswd file - either do it manually (i.e., using OpenSSL utilities) or do it with the Apache utilities. If you choose to go the manual/OpenSSL route, the guide states that your first step is to run this command, replacing ‘sammy’ with whatever username you want to use:
sudo sh -c "echo -n 'sammy:' >> /etc/nginx/.htpasswd"
**You may be tempted, as I was, to frown upon the colon (“:”) after the name “sammy” in the example and therefore simply disregard it. ** DO NOT DO THAT! Without the colon the format of your resulting .htpasswd file will be incorrect and all your authentication attempts will fail… ><