diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2021-06-30 15:33:10 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2021-06-30 15:33:10 -0400 |
| commit | 4dd13caa780693c1fedc10535583df736c848963 (patch) | |
| tree | 2b26d2b87ae29206d8cfdec48b0b43532474f0a2 | |
| parent | 8850e819d5ad336e0841cab92dea724b39de5044 (diff) | |
what i get for trusting an untested pr
| -rw-r--r-- | nginx.html | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -209,10 +209,11 @@ systemctl disable ufw</code></pre> This keeps the firewall otherwise active. </p> -<pre><code>ufw allow http,https</code></pre> +<pre><code>ufw allow 80 +ufw allow 443</code></pre> <p> -This will open port 80 and port 443. Port 80 is the canonical webserver port, while 443 is the port used for encrypted connections. +Port 80 is the canonical webserver port, while 443 is the port used for encrypted connections. We will certainly need that for the next page. </p> |
