Hii All
If anybody can tell us why we are getting this below error
2025/01/20 06:57:15 [error] 21256#21256: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 202.83.16.106, server: www.medetel.in, request: "GET / HTTP/2.0", upstream: "http://127.0.0.1:5050/", host: "medetel.in"
2025/01/20 07:00:09 [error] 21256#21256: *11 connect() failed (111: Connection refused) while connecting to upstream, client: 135.181.85.71, server: www.medetel.in, request: "GET / HTTP/2.0", upstream: "http://127.0.0.1:5050/", host: "medetel.in"
2025/01/20 07:02:39 [error] 21256#21256: *14 connect() failed (111: Connection refused) while connecting to upstream, client: 5.181.190.248, server: www.medetel.in, request: "GET / HTTP/1.1", upstream: "http://127.0.0.1:5050/", host: "216.48.186.187:443"
I have opened 5050 port, restarted nginx service,checked the nginx.config file
server {
listen 80;
listen [::]:80;
server_name www.medetel.in;
location ^~ / {
return 301 https://$server_name$request_uri; #redirect HTTP to HTTPS
}
location ^~ /.well-known/acme-challenge/ {
allow all;
default_type "text/plain";
root /var/www/bigbluebutton-default/assets;
}
location = /.well-known/acme-challenge/ {
return 404;
}
}
set_real_ip_from 127.0.0.1;
real_ip_header proxy_protocol;
real_ip_recursive on;
server {
# this double listening is intended. We terminate SSL on haproxy. HTTP2 is a
# binary protocol. haproxy has to decide which protocol is spoken. This is
# negotiated by ALPN.
#
# Depending on the ALPN value traffic is redirected to either port 82 (HTTP2,
# ALPN value h2) or 81 (HTTP 1.0 or HTTP 1.1, ALPN value http/1.1 or no value)
listen 127.0.0.1:82 http2 proxy_protocol;
listen [::1]:82 http2;
listen 127.0.0.1:81 proxy_protocol;
listen [::1]:81;
server_name www.medetel.in;
# nginx does not know its external port/protocol behind haproxy, so use relative redirects.
absolute_redirect off;
# HSTS (uncomment to enable)
#add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
access_log /var/log/nginx/bigbluebutton.access.log;
# This variable is used instead of $scheme by bigbluebutton nginx include
# files, so $scheme can be overridden in reverse-proxy configurations.
set $real_scheme "https";
# BigBlueButton landing page.
location / {
root /var/www/bigbluebutton-default/assets;
try_files $uri @bbb-fe;
}
# Include specific rules for record and playback
include /etc/bigbluebutton/nginx/*.nginx;
--
You received this message because you are subscribed to the Google Groups "bigbluebutton-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-u...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/bigbluebutton-users/0f063c97-ca63-4fa9-9e92-b1f852c7b796n%40googlegroups.com.