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.
It seems to me you have a 301 redirect to HTTPS plus your website is being redirected to your Droplet’s IP Address. This means the configuration of either Apache or Nginx is not properly done.
I’ll recommend you to check one of the following articles, based on what stack you used:
Disable your plugins or check your .htaccess file.
To Disable your plugins Go main directory -> wp-content -> Rename plugins as plugins_disable.
Hello,
I believe that you’ve initially set up the WordPress installation for the server IP address rather than your domain name.
You need to change your WordPress site and home URLs by editing your wp-config.php file and adding the following lines:
define( 'WP_HOME', 'https://example.com' );
define( 'WP_SITEURL', 'https://example.com' );
Best,
Bobby