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.

I am trying to make a reverse proxy server with Nginx, i have a Proxy (for HTTP) and a Proxy-SSL (For HTTPS)
I have some problems with the Proxy-SSL (HTTPS) I am getting a bad gateway 502 error when i am trying to connect to https://owncloud.example.eu
but when i use https for my example.eu site then everything is working flawless
the backend servers are LAMP’server
The logs are empty.
server {
listen 443 ssl;
server_name example.eu;
ssl on;
ssl_certificate /etc/nginx/ssl/wordpress/wordpress.crt;
ssl_certificate_key /etc/nginx/ssl/wordpress/wordpress.key;
#ssl_trusted_certificate /etc/nginx/ssl/path/ca-certs.pem;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # don't use SSLv3 because of killer poodles
#Uncomment to enable the settings
#gzip on;
location / {
# app1 reverse proxy follow
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass https://10.0.2.5:443;
}
}
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # Webserver 2 # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
server {
listen 443 ssl;
server_name owncloud.example.eu;
ssl on;
ssl_certificate /etc/nginx/ssl/owncloud /owncloud.crt;
ssl_certificate_key /etc/nginx/ssl/owncloud/owncloud.key;
#ssl_trusted_certificate /etc/nginx/ssl/path/ca-certs.pem;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # don't use SSLv3 because of killer poodles
#Uncomment to enable the settings
#gzip on;
location / {
# app1 reverse proxy follow
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass https://10.0.2.7:443;
}
}
009fd274aeae48f2bfbda6ef568676
Cloudstream Apk
Ruz
Ruz
Edward Sitarski
ebeecroft
dashan
34bcef38725b4e6eb5224ae028f17e
markatango
gouskova
Andrew J Montanus