summaryrefslogtreecommitdiff
path: root/auth.html
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2021-07-05 09:33:36 -0400
committerLuke Smith <luke@lukesmith.xyz>2021-07-05 09:33:36 -0400
commit22299f84d39c26dd661a217809ae3174ccfaf4eb (patch)
tree588a1440873524b3172e31c517366e8b15a1e043 /auth.html
parent935d9d26748281437157cffc10e949382f39b9d3 (diff)
spell form
Diffstat (limited to 'auth.html')
-rw-r--r--auth.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth.html b/auth.html
index a394b98..2418b97 100644
--- a/auth.html
+++ b/auth.html
@@ -21,8 +21,8 @@
<p>We will be using the command <code>htpasswd</code> to make username and password pairs.</p>
<pre><code>apt install apache2-utils</code></pre>
<aside>
- <p>The apache utils has a small username-password pair encryption tool.</p>
- <p>Like the other on this site, this tutorial is for Nginx, <strong>not</strong> for Apache servers.</p>
+ <p>The apache utils include a small username-password pair encryption tool.</p>
+ <p>Like the other tutorials on this site, this tutorial is for Nginx, <strong>not</strong> for Apache servers.</p>
</aside>
<p>
@@ -81,7 +81,7 @@
<p>If you want to check both a username and password with an ip address, use the <code>satisfy</code> directive.</p>
<pre><code>location /api {
#...
- satify all ;
+ satisfy all ;
allow 192.168.1.23:8080 ;
deny 127.0.0.1 ;