Skip to content

Commit

Permalink
Add more tips and tricks to in-app guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Warxim committed May 10, 2023
1 parent 8e44a60 commit d6b23f8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/main/resources/html/guide/internal/TipsAndTricksGuide.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,13 @@ <h2>Tip #3 Go through the user guide.</h2>
<p>Go to the PETEP website and check out the full user guide.</p>

<h2>Tip #4 Go through the development guide.</h2>
<p>Go to the PETEP website and check out the full development guide.</p>
<p>Go to the PETEP website and check out the full development guide.</p>

<h2>Tip #4 Go through the methodology.</h2>
<p>Go to the PETEP website and check out the full methodology.</p>

<h2>Tip #5 Use Java keytool to generate certificate in JKS.</h2>
<p>In order to use SSL/TLS, generate your own certificate using Java keytool, that is part of the Java binaries:</p>
<pre class="code">
keytool -genkey -alias petep -keyalg RSA -validity 3650 -keysize 4096 -keystore C:/server.jks
</pre>

0 comments on commit d6b23f8

Please sign in to comment.