We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8a7ffa commit d555dc1Copy full SHA for d555dc1
3 files changed
README.md
@@ -37,9 +37,15 @@
37
Checking the Server Status:
38
sudo service nginx status
39
40
+ Disable the Server at Boot-Up:
41
+ sudo systemctl disable nginx
42
+
43
+ Enable the Server at Boot-Up:
44
+ sudo systemctl enable nginx
45
46
## Private Key & Certificate Generation Commands
47
- Generate Private Key (2048 Bit Key Length) & Certificate:
48
+ Generate Self-Signed Private Key (2048 Bit Key Length) & Certificate:
49
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout domainName.key -out domainName.crt
50
51
Generate PEM File Certificate (For Secure Email Messaging):
scripts/disable.sh
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
3
+systemctl disable nginx
scripts/enable.sh
+systemctl enable nginx
0 commit comments