diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2023-06-21 02:52:14 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2023-06-21 02:52:14 -0600 |
commit | 9a2a3b68f4d473f5764646df307cd33b0a4c49b6 (patch) | |
tree | 24f243d82715353d220095a1bf0756cf31ffbe75 /src/blog/a | |
parent | 034fdee4e2a2daf35bb6f1491e7f83bc91f386f3 (diff) |
move images to different location
Diffstat (limited to 'src/blog/a')
-rw-r--r-- | src/blog/a/mail_server_with_postfix.md | 2 | ||||
-rw-r--r-- | src/blog/a/website_with_nginx.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/blog/a/mail_server_with_postfix.md b/src/blog/a/mail_server_with_postfix.md index de658c1..3df9826 100644 --- a/src/blog/a/mail_server_with_postfix.md +++ b/src/blog/a/mail_server_with_postfix.md @@ -519,4 +519,4 @@ Next, to actually login into a mail app/program, you will use the following sett All that's left to do is test your mail server for spoofing, and to see if everything is setup correctly. Go to [DKIM Test](https://www.appmaildev.com/en/dkim) and follow the instructions (basically click next, and send an email with whatever content to the email that they provide). After you send the email, you should see something like: -![DKIM Test successful](${SURL}/images/b/notes/mail/dkim_test_successful.png "DKIM Test successful") +![DKIM Test successful](${SURL}/images/b/mail/dkim_test_successful.png "DKIM Test successful") diff --git a/src/blog/a/website_with_nginx.md b/src/blog/a/website_with_nginx.md index d4a5402..e3846cf 100644 --- a/src/blog/a/website_with_nginx.md +++ b/src/blog/a/website_with_nginx.md @@ -41,7 +41,7 @@ systemctl start nginx.service And that's it, at this point you can already look at the default initial page of Nginx if you enter the IP of your server in a web browser. You should see something like this: -![Nginx welcome page](${SURL}/images/b/notes/nginx/nginx_welcome_page.png "Nginx welcome page") +![Nginx welcome page](${SURL}/images/b/nginx/nginx_welcome_page.png "Nginx welcome page") As stated in the welcome page, configuration is needed, head to the directory of Nginx: @@ -126,7 +126,7 @@ systemctl restart nginx If everything goes correctly, you can now go to your website by typing `domain.name` on a web browser. But you will see a "404 Not Found" page like the following (maybe with different Nginx version): -![Nginx 404 Not Found page](${SURL}/images/b/notes/nginx/nginx_404_page.png "Nginx 404 Not Found page") +![Nginx 404 Not Found page](${SURL}/images/b/nginx/nginx_404_page.png "Nginx 404 Not Found page") That's no problem, because it means that the web server it's actually working. Just add an `index.html` file with something simple to see it in action (in the `/var/www/some_folder` that you decided upon). If you keep seeing the 404 page make sure your `root` line is correct and that the directory/index file exists. |