Freepbx gui access

NethServer Version: 7.9
Module: FREEPBX

Hi guys,
nice to meet you.

I’m new on nethserver but having experience about asterisk and FreePBX the first module that I tried was that. The problem is that the access is forgived, even after to have configured my pc address in the settings panel of the same module.

Is there else to do or someone can help me ??

Thanks a lot
Enrico

I installed it on a test VM and it’s working, FreePBX is accessible from the LAN (green role) by default, see docs. Maybe you need to remove the configured PC address?

Did you setup Nethserver with one (server) or more network interfaces (gateway)?

Please check httpd conf if the right network is allowed:

[root@testserver ~]# cat /etc/httpd/conf.d/freepbx.conf
# ================= DO NOT MODIFY THIS FILE =================
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at NethServer official site: https://www.nethserver.org
#
#


<Location /freepbx>
    Deny from all
    Allow from 127.0.0.1 192.168.1.0/255.255.255.0
    ProxyPass http://127.0.0.1:960/freepbx
    ProxyPassReverse http://127.0.0.1:960/freepbx
    ProxyPreserveHost On
</Location>

<Location /ucp>
    Deny from all
    Allow from 127.0.0.1 192.168.1.0/255.255.255.0
    ProxyPass http://127.0.0.1:960/freepbx/ucp
    ProxyPassReverse http://127.0.0.1:960/freepbx/ucp
    ProxyPreserveHost On
</Location>

Hi Markus,

thanks again.

I installed the system as router with 2 interfaces wanting to test it for some purposes.

I read the doc to find how to grant access to the FreePBX interface and being of few rows I supposed that surely must be easy to manage, that’s why obtaining the problem I thouth to write in the community.

I’m thinking for a thing, after the setup I inverted the two Eth Green to Red and Red to Green, may be that change to have created all the problems ?? Something like that the system write some rule himselves and having made the change now there are problems ??

Please note that I’ve installed more than 60 plugin and only 4-5 have problems to start or run

Regards, have a good Sunday

Enrico

Yes, see docs for more details about roles.

I recommend testing one module after the other if they are interesting to you instead of installing everything.
More software needs more resources…

1 Like