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!
I followed this article yesterday. It helped me a lot. Great work digital ocean.
When configuring on Centos 6, I made the following changes:
yum install epel-release
yum install nginx
Verify/Add the following line at the end of the http{} block in /etc/nginx/nginx.conf:
include /etc/nginx/conf.d/*.conf;
The JENKINS_LISTEN_ADDRESS variable is located in /etc/sysconfig/jenkins
If you see a “502 Bad Gateway” in your browser, run the following command on the server (Lost 3 hours because of this):
setsebool -P httpd_can_network_connect 1
Hi Thank you for the helpful article. The banner in the top has a typo in it, and it should be “as a Reverse Proxy” instead of Reserve.
Thanks for the great tutorial, it helped me a lot with a “broken proxy” issue. It appeared that I’ve added trailing slash to proxy_pass directive http://127.0.0.1:8080/ But what is the problem with that slash? Sometimes proxying works with it, sometimes not. Where can I find explanation of this issue?
I just wanted to say THANK YOU!
This casually dropped comment…
Also, if you misconfigure the proxy_pass (by adding a trailing slash for example), you will get something similar to the following in your Jenkins Configuration page.
…saved my life. I had spent 3 days trying to find the error in a seemingly correct configuration. It was the trailing slash.
Note if you want your http to be redirected to https, include server_name into server section like
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
Thanx for an article :) Hey, I got an interesting question about proxy thing.
So what if I decided to make proxy_pass to some proxy server. I spend 3 days trying to make it working. And it works just fine with HTTP. And totally getting broken when it comes to HTTPS.
I tried a number of options but all of them are giving the same result. Is there some small hint that might help me find solution for the case?)
Excellent tutorial! Thank you! Although I suggest an update of the SSL settings from this location: