Search results

  1. M

    (Solved) Dehydrated problem

    How do you get it to auto-renew? I ran "dehydrated -c" which renewed the certificates for nginx, but didn't restart nginx or replace the certs and links in /etc/freeswitch/tls Without those files updated, then wss and tls connections fail. Is there a cron job that can renew the letsencrypt...
  2. M

    SOLVED Dial out on an alternate port not working

    [SOLVED] strange thing. Had to read the incoming destination number in a lua script, parse it into IP:port and then transfer it back into internal. Once it comes back into internal, the destination_number is correct, so I can then bridge it out to the correct user@${destination_number}...
  3. M

    SOLVED Dial out on an alternate port not working

    That's what I did, but I can see in the logs that it mangles the address like this: ${caller_destination}(xx.xxx.xxx.1515070) -- see how it removes the colon? this is supposed to be ....151:5070
  4. M

    Hello from Chicago

    Hello everyone. This forum has been really helpful as we build some custom systems. Hope I can help others with my experiences too!
  5. M

    SOLVED Dial out on an alternate port not working

    I need to dynamically dial end points that may be on random SIP ports ( not 5060 ). I have tried adding the port to the dial string like this: user@<ip address>:5070 but it connects and hangs up. The server log says: BYE due to: Reason: SIP;cause=500;text="Internal Error" Anyone have any...