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.
Heya,
Just came across this answer and decided to write some general guidelines for anyone who comes across this in the future despite the old question.
Based on your description, it’s possible there’s a conflict in the configuration that’s causing an infinite loop of redirects. The Error, “AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error”, indicates this issue.
Given that you are able to access the WordPress admin interface but not the blog posts, it would seem the redirects are being properly handled for the admin pages, but not for your post pages.
The first thing that I would recommend checking is your WordPress and Site URL configurations. Ensure that both are set correctly to https://domain.com/blog.
Next, consider revisiting the configuration of rack-reverse-proxy. Make sure that it is correctly routing requests for your blog to your DigitalOcean server. Errors in this configuration could certainly cause loops of redirects as your logs suggest.
Finally, I recommend checking your VirtualHost and .htaccess configurations thoroughly. It’s highly possible that an incorrect rewrite rule or server alias could be causing this issue.
For more details on configuring WordPress with DigitalOcean, kindly check out this guide.
Hope that this helps!