<div dir="ltr">hello<div><br></div><div><span style="color:rgb(0,0,0);white-space:pre-wrap">I am trying to proxy all websocket requests though a nginx server in order to have </span><span style="color:rgb(0,0,0);white-space:pre-wrap">wss -> nginx --> ws -> fs </span></div><div><br></div><div>FS is listening on "<a href="http://127.0.0.01:5075">127.0.0.01:5075</a>" for ws  and so nginx is configured to proxy-pass to "<a href="http://127.0.0.1:5075">127.0.0.1:5075</a>"</div><div><br></div><div><span style="color:rgb(0,0,0);white-space:pre-wrap">when trying request from brower, I see a REGISTER coming to the freeSWITCH, but the VIA header seems invalid :</span><br></div><div><pre style="white-space:pre-wrap;color:rgb(0,0,0)">nta.c:3146 agent_check_request_via() nta: Via check: invalid transport 
"SIP/2.0/WSS"</pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><font face="arial, sans-serif">do you know how to do to have correct VIA ?</font></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><font face="arial, sans-serif">is there anything to deal with ACL ? </font></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><span style="font-family:arial,sans-serif">my nginx configuration is this :</span><br></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><br></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)">        ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;<br>        ssl_ciphers HIGH:!MD5:!RC4:!EXPORT:!aNULL:!eNULL:!SSLv2:!IDEA:!3DES;<br>        ssl_prefer_server_ciphers on;<br>        ssl_session_tickets off ;<br>        ssl_session_timeout 5m;<br>        ssl_session_cache shared:SSL:5m;<br><br>        ssl_certificate ssl.crt/mydomain.com_chain.crt;<br>        ssl_certificate_key ssl.key/mydomain.com.key;<br><br>       location / {<br>           proxy_set_header Upgrade $http_upgrade;<br>           proxy_set_header Connection "Upgrade";<br>           proxy_http_version 1.1;<br>           proxy_set_header Host $host;<br>           proxy_pass <a href="http://127.0.0.1:5075">http://127.0.0.1:5075</a>;<br></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)">thanks</pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)">regards</pre></div></div>