Skip to content

Commit

Permalink
Merge pull request #43 from galex505/v4
Browse files Browse the repository at this point in the history
chore: add ssl/tls creation faq
  • Loading branch information
redteampanda-ng authored Aug 26, 2024
2 parents 09d0601 + 046e50d commit 1c465f0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
22 changes: 22 additions & 0 deletions faqs/certificates.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.. index:: Resetting TLS/SSL Certificates

Resetting TLS/SSL Certificates
------------------------------

**Q: How can I reset TLS/SSL Certificates?**

The Analysis Cockpit ships with a self-signed certificate for its web interface
that expires after 182 days. If you do not use your own CA
infrastructure and want to renew the certificate or want to revert
from a broken state, you can recreate a self-signed certificate.
To do so log in using SSH and execute:

.. code-block:: console
nextron@asgard:~$ sudo openssl req -new -newkey rsa:4096 -days 182 -nodes -x509 -subj "/O=Nextron Systems GmbH/CN=$(hostname --fqdn)" -keyout /etc/asgard-analysis-cockpit/http.key -out /etc/asgard-analysis-cockpit/http.pem
You need to restart the Analysis Cockpit in order for the changes to take effect.

.. code-block:: console
nextron@asgard:~$ sudo systemctl restart asgard-analysis-cockpit.service
1 change: 1 addition & 0 deletions faqs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ right after.
iexplorer
admin-pass
2fa
certificates
Binary file modified images/esxi_new_vm_guest_os.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion setup/esxi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Create a new VM with your virtualization software. In this case, we will
use VMWare ESX managed through a VMWare VCenter.

The new VM must be configured with a Linux base system and Debian
GNU/Linux 10 (64 bits) as target version. It is recommended to upload
GNU/Linux 12 (64 bits) as target version. It is recommended to upload
the Nextron Universal Installer ISO to an accessible datastore and mount
the same to your newly created VM.

Expand Down

0 comments on commit 1c465f0

Please sign in to comment.