You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/etc/apache2/ngcp-panel

25 lines
709 B

Listen 3443
PerlSwitches -I/usr/share/perl5
<VirtualHost *:3443>
ServerAdmin support@sipwise.com
ServerName myserver
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/myserver.crt
SSLCertificateKeyFile /etc/apache2/ssl/myserver.pem
PerlModule Apache2::RequestUtil NGCP::Panel
# always keep "Location /" at the top!
# it will be overridden by later more specific locations
<Location />
SetHandler modperl
PerlResponseHandler NGCP::Panel
</Location>
LogLevel info
ErrorLog syslog:local7
CustomLog "|/usr/bin/logger -p daemon.info -t ngcp-panel" combined
</VirtualHost>