Skip to content

I think there can be a typo in the example. #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tls.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,16 @@ EOF </programlisting>
<para>The certificate is now ready for use by both the SIP and
XMPP servers. It can also be used to secure a web server, SMTP
server or any other application.</para>
<example xml:id="tls-selfsign-certificate-commands">
<title>Self signing the certificate</title>
<para>It is not highly recommended but if you would like to create a self signed certificate, you can use the following command.</para>
<programlisting format="linespecific">
$ sudo openssl x509 -req -days 365 -in ${CSR_PEM} \
-signkey ${PRIVATE_KEY_PEM} \
-out ${CERT_DIR}/${MY_DOMAIN}.pem
</programlisting>
</example>

</sect1>

</chapter>