diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-12-02 11:34:20 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-12-02 11:34:20 -0600 |
commit | fcc889508ab63a679b5cbd231478b25cff48d8fc (patch) | |
tree | a9ec2ce9f00b07a0ab081e7160e1183a7cef634f /blog/2022-11-29-nginx-referrer-ban-list.org | |
parent | dfb4de1797796c72f597f4c0c6cd1e01dc5a66ee (diff) | |
download | cleberg.net-fcc889508ab63a679b5cbd231478b25cff48d8fc.tar.gz cleberg.net-fcc889508ab63a679b5cbd231478b25cff48d8fc.tar.bz2 cleberg.net-fcc889508ab63a679b5cbd231478b25cff48d8fc.zip |
fix: update domains
Diffstat (limited to 'blog/2022-11-29-nginx-referrer-ban-list.org')
-rw-r--r-- | blog/2022-11-29-nginx-referrer-ban-list.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blog/2022-11-29-nginx-referrer-ban-list.org b/blog/2022-11-29-nginx-referrer-ban-list.org index 7995106..2f71666 100644 --- a/blog/2022-11-29-nginx-referrer-ban-list.org +++ b/blog/2022-11-29-nginx-referrer-ban-list.org @@ -103,7 +103,7 @@ In order to test the results, let's curl the contents of our site. To start, I'll curl the site normally: ```sh -curl https://0x4b1d.org +curl https://cleberg.net ``` The HTML contents of the page come back successfully: @@ -115,7 +115,7 @@ The HTML contents of the page come back successfully: Next, let's include a banned referrer: ```sh -curl --referer https://news.ycombinator.com https://0x4b1d.org +curl --referer https://news.ycombinator.com https://cleberg.net ``` This time, I'm met with a 403 Forbidden response page. That means we are |