alexis.prodhomme at se... Guest
|
Posted: Thu Sep 08, 2022 9:35 am Post subject: [Freeswitch-users] nginx and FreeSWITCH 1.10 |
|
|
Hi Franck,
I don't know about freeswitch, but here is the configuration that works using nginx to read wss and forward it to kamailio. I think this can be quite similar with freeswitch. Quote: | location /softphone/ws {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_read_timeout 1d;
proxy_pass http://kamailio_domain_name:4443;
} |
Le 07/09/2022 à 07:55, Kakiman Expert a écrit :
Quote: | hello
does anybody has experience using nging as wss to ws proxy ?
(usage of nginx to decrypt wss and then forward ws to FreeSWITCH)
thanks
franck
|
|
|