995e73e04b
AstManProxy is a multi-threaded proxy server for the Asterisk Manager Interface. As well as straight proxying, it can also translate between AMI and HTTP (with output in plaintext, XML, or CSV formats). SSL is also available (for both AMI and HTTP).
7 lines
230 B
Plaintext
7 lines
230 B
Plaintext
To use SSL with astmanproxy, you can create a certificate like this:
|
|
|
|
# umask 077; \
|
|
openssl req -newkey rsa:1024 -keyout /tmp/ssl.pem \
|
|
-nodes -x509 -days 365 -out /tmp/ssl.pem \
|
|
-config /etc/astmanproxy/proxy-ssl.conf
|