› VitalPBX Community Support › General Discussion › Expose only HTTP Recordings login page › Reply To: RE: Expose only HTTP Recordings login page
-
- August 22, 2018 at 4:03 pm
You can do it configuring a specific port to access to the recording login page:
Create a file named srecordings.conf under /etc/httpd/conf.d/ with the following content:
<VirtualHost *:2000>
UseCanonicalName Off
DocumentRoot /usr/share/sonata/recordings/www
<Directory "/usr/share/sonata/recordings/www">
Require all granted
Options FollowSymlinks
AllowOverride all
</Directory>
<Directory "/var/lib/sonata/recordings">
Option Indexes FollowSymLinks
Require all granted
</Directory>
Alias /rec_static "/var/lib/sonata/recordings"
</VirtualHost>Remember that you must to allow this port in the firewall of VitalPBX
0