diff options
| author | Matthew Evan <55710660+MattMadness@users.noreply.github.com> | 2021-06-30 15:50:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-30 15:50:36 -0400 |
| commit | a3a3ad08aa9dbbe84131623de90795ba45ca11c0 (patch) | |
| tree | 90363dc3633bfebefd0fd46c09bfe255321f5765 /nginx.html | |
| parent | 0ec88713f149ed5cac65f8e181eb241b5225e748 (diff) | |
| parent | 9b2f34dd35ec367fdf68db9e7c411f53caea88b8 (diff) | |
Merge branch 'master' into master
Diffstat (limited to 'nginx.html')
| -rw-r--r-- | nginx.html | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -172,7 +172,7 @@ This will appear on your website. <p>This is my website. Thanks for stopping by!</p> <p>Now my website is live!</p></code></pre> -<h3>Enable the site</h3> +<h3 id=enable>Enable the site</h3> <p> Once you save that file, we can enable it making a link to it in the <code>sites-enabled</code> directory: @@ -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> |
