Jump to content

bruise_lee

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by bruise_lee

  1. I can sign into the wiki, forums.unraid.net, even setup "My Servers" from my local unraid server setup but for the life of me, I cannot sign into https://unraid.net/login.I've also tried resetting my password, changing the registered email address, etc but still get the "invalid username/password".

     

    Ultimately, I'm trying to downgrade from 6.10.2 to 6.9.2 because I want to use my own cert and not have it "reset" after each unraid update.

     

    Thanks

    Capture.PNG

  2. On 5/5/2021 at 2:12 PM, brownkurts said:

    Ok I get it working if anybody else has this issues this is my config I took out my IP of my server but you just imput you server local IP and this should work if you using the sawg docker to access this remote

     

    server {
        listen        443;
        server_name   remotely.*;
        location / {
            proxy_pass         http://xxx.xxx.xxx.xxx:9280;
            proxy_http_version 1.1;
            proxy_set_header   Upgrade $http_upgrade;
            proxy_set_header   Connection keep-alive;
            proxy_set_header   Host $host;
            proxy_cache_bypass $http_upgrade;
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header   X-Forwarded-Proto $scheme;
        }
        location /_blazor {    
            proxy_pass  http://xxx.xxx.xxx.xxx:9280;    
            proxy_http_version 1.1;    
            proxy_set_header Upgrade $http_upgrade;    
            proxy_set_header Connection "upgrade";    
            proxy_set_header Host $host;    
            proxy_cache_bypass $http_upgrade;    
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;    
            proxy_set_header   X-Forwarded-Proto $scheme;    
        }    
        location /AgentHub {    
            proxy_pass  http://xxx.xxx.xxx.xxx:9280;    
            proxy_http_version 1.1;    
            proxy_set_header Upgrade $http_upgrade;    
            proxy_set_header Connection "upgrade";    
            proxy_set_header Host $host;    
            proxy_cache_bypass $http_upgrade;    
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;    
            proxy_set_header   X-Forwarded-Proto $scheme;    
        }    
        location /ViewerHub {    
            proxy_pass  http://xxx.xxx.xxx.xxx:9280;    
            proxy_http_version 1.1;    
            proxy_set_header Upgrade $http_upgrade;    
            proxy_set_header Connection "upgrade";    
            proxy_set_header Host $host;    
            proxy_cache_bypass $http_upgrade;    
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;    
            proxy_set_header   X-Forwarded-Proto $scheme;    
        }    
        location /CasterHub {    
            proxy_pass  http://xxx.xxx.xxx.xxx:9280;    
            proxy_http_version 1.1;    
            proxy_set_header Upgrade $http_upgrade;    
            proxy_set_header Connection "upgrade";    
            proxy_set_header Host $host;    
            proxy_cache_bypass $http_upgrade;    
            proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;    
            proxy_set_header   X-Forwarded-Proto $scheme;    
        }
    }

     

    #shorter version that works

     

    server {
        listen        443 ssl http2;
        server_name   remotely.yourdomain.com*; #or whatever you want the URL to be
        
        include /config/nginx/ssl.conf;

        client_max_body_size 0;
        
        location / {
            include /config/nginx/proxy.conf;
            include /config/nginx/resolver.conf;
    proxy_pass  http://xxx.xxx.xxx.xxx:9280; 
            set $upstream_port 443;
            set $upstream_proto https;
                    }
    }

×
×
  • Create New...