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.
I destroyed the droplet and rebuilt everything, setting nginx first and then the website code. It works now.
Hello,
Everything seems to be working just fine but you are redirecting your http traffic to https and it looks like that you have not configured Nginx to listen on port 443. You need to install an SSL certificate, sort out your server block for port 443 and the site will start loading as normal.
You can see the redirect simply by running this curl command
curl -IL advicequest.com
The output that you would get would be something like this:
HTTP/1.1 301 Moved Permanently
Server: nginx/1.14.0 (Ubuntu)
Date: Fri, 12 Jul 2019 04:22:45 GMT
Content-Type: text/html
Connection: keep-alive
Location: https://advicequest.com/
curl: (7) Failed to connect to advicequest.com port 443: Connection refused
```
Hope that this helps!
[Bobby](https://bobbyiliev.com)