Recent content by bryanredeagle

  1. bryanredeagle

    Web interface not accessible after upgrade

    Not off hand, but there should be logs that say why. If you SSH in and go to /var/log/nginx, there should be an error log that will say what caused the 500. If you post the last 40 or so lines here, we could probably tell you why.
  2. bryanredeagle

    Monitoring connections to fusion

    For the voice issues, it sounds like an issue with the CSF firewall. I can't say what though because I'm not familiar with it. In regards to FusionPBX being secure, it's configured to sit on the internet directly. It has a firewall, fail2ban, and freeswitch settings to block unwanted traffic...
  3. bryanredeagle

    How are you staying relevant and selling hosted VoIP /w FusionPBX?

    Yeah. Using a framework like Laravel or Yii makes security a bunch easier (since other developers are invested in the framework being secure). Both of those frameworks have modularity built in, and they use Composer for package management. You can easily extend Composer to use it as a module...
  4. bryanredeagle

    FusionPBX App Development

    I don't mind putting in the work. I scoured Snom docs so that I could build better provisioning templates, and I'm currently digging into their minibrowser docs to see how possible/useful various phone apps would be to users. I had just hoped that there was a doc that said, "you need these...
  5. bryanredeagle

    How are you staying relevant and selling hosted VoIP /w FusionPBX?

    I can't say anything on the business side. I've just started my own business (phone focused) a couple months ago and I'm still working my way up. Though I agree entirely with your statement on the UI. It needs a rewrite, but, based on the source, that would take a significant rewrite to make...
  6. bryanredeagle

    FusionPBX App Development

    Oof. Thanks for the info!
  7. bryanredeagle

    PIN before call

    Go to the dial plan rule for the number, and add the following before the bridge action: action set pin_number=(Whatever pin number you choose) action lua pin_number.lua
  8. bryanredeagle

    Selecting a VPS

    For the data center sort of the same distance as Singapore to you, I get about 44ms. I'm a few towns over from my nearest data center, and I get about 15ms. For Singapore, I get about 200-300ms, but I also live in the US.
  9. bryanredeagle

    Selecting a VPS

    I also agree with the others. Vultr, Digital Ocean, and Linode all have a datacenter in Singapore. Digital Ocean and Linode also have locations in India, and Vultr and Linode have locations in Japan.
  10. bryanredeagle

    Play music on hold while LUA task execution

    Oof... I'm still learning the lua api myself, but in the Freeswitch Lua API Reference I found the streamFile action. session:streamFile("/tmp/blah.wav"); https://freeswitch.org/confluence/display/FREESWITCH/Lua+API+Reference#LuaAPIReference-session:streamFile
  11. bryanredeagle

    Multiple FusionPBX profiles

    Yes. Under Advanced -> SIP Profile, you can copy the existing Internal Profile (and ipv6 version if you are using that) by clicking on it and clicking the Copy button. From there, you change the ports it's using to something different. If you want to keep certain domains on certain profiles...
  12. bryanredeagle

    VESTACP - Any issues

    Sorry. I don't have great info for you there. I've only dabbled with a few and they all operate similar to Vesta.
  13. bryanredeagle

    VESTACP - Any issues

    I can't say for sure, but my guess is probably yes. Both install scripts want to install the full web stack in their own way. If you install FusionPBX first, Vesta might override nginx settings so that it can manage them. If FusionPBX is installed afterward, it'll overwrite anything Vesta has...
  14. bryanredeagle

    change caller ID on forward

    Ah ha! I think I'm seeing it now. So yes. I do suggest following DigitalDaz's instructions in that link. That should make that field work as expected. Sorry for the guess and check style of help. I'm less familiar with the call forwarding stuff.
  15. bryanredeagle

    3 way calling

    I'm not sure that's a thing you can do because, from Freeswitch's view, both calls are bridged to your phone. When you hang up, you are destroying those bridges. It might be possible if you were to have a phone that could transfer the calls to each other, but I personally don't know of any phone...