Thread: Xbt backend ssl
View Single Post
  #5  
Old 2nd November 2019, 23:55
madness85 madness85 is offline
Senior Member
 
Join Date: Jun 2017
Posts: 17
Default
Quote:
Originally Posted by rio View Post
can you please share your nginx conf file here others will get a better idea of how to help you fix it ;)
My example:

events {
worker_connections 4096; ## Default: 1024
}
http {
server {
listen test.site.me:2083 ssl ;
ssl_certificate /etc/apache2/ssl/apache.crt;
ssl_certificate_key /etc/apache2/ssl/apache.key;
location / {
proxy_pass http://test.site.me:2710/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
error_log /var/log/nginx/error.log;
}
}
}


Xbt is running is running on 2710 as default. Proxy to secure 2083 works, but all peers have the server IP.
Reply With Quote