79524567

Date: 2025-03-21 04:59:05
Score: 0.5
Natty:
Report link
Here are two steps to solve if you are hosting with iis server then using the Blazor server app
1> Go to Windows and serach the enter image description her  (Turn windows features on or off) 
2>Then select the           
                        ->  internet information services 
                          -> World wide web services
                            -> Application Development Features
                               - WebSocket Protocol (Turn on)





if you are using the ubuntu then go to set this setting like this
location /_blazor {
    proxy_pass http://localhost:5002;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Harsh