diff --git a/content/about/img/profil-modified.png b/assets/img/profil.png similarity index 100% rename from content/about/img/profil-modified.png rename to assets/img/profil.png diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml index 59bf526..b6a8d81 100644 --- a/config/_default/languages.en.toml +++ b/config/_default/languages.en.toml @@ -1,7 +1,7 @@ languageCode = "en" languageName = "English" weight = 1 -title = "d3vyce's Blog" +title = "d3vyce Blog" [params] displayName = "EN" @@ -15,7 +15,7 @@ title = "d3vyce's Blog" [author] name = "d3vyce" - image = "img/author.png" + image = "img/profil.png" headline = "Hi πŸ‘‹, Welcome to my Blog!" bio = "Cybersecurity, Devops, Infrastructure" links = [ diff --git a/content/about/index.md b/content/about/index.md index 3cd6b63..755b1d4 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -1,11 +1,9 @@ --- title: "About" slug: "about" -layout: "simple" +layout: "about" --- - - Hi, I'm Nicolas S aka d3vyce. I am a network and cybersecurity engineer living in France. I've always been passionate about computer science and technology, and over the years I've developed my skills in various fields such as programming, cybersecurity, infrastructure, networks, ... In addition to my master degree in networks and security, I love CTF and I have a homelab at home to continue my learning and experiment new things. {{< alert icon="circle-info" >}} diff --git a/content/categories/_index.md b/content/categories/_index.md index 31a7ce0..7910cf4 100644 --- a/content/categories/_index.md +++ b/content/categories/_index.md @@ -1,7 +1,7 @@ --- title: "Categories" slug: "categories" -layout: "simple" +layout: "categories" --- {{< list title="Infrastructure" cardView=true limit=3 where="Type" value="infrastructure" >}} diff --git a/content/posts/authelia-selfhosted-sso/index.md b/content/posts/authelia-selfhosted-sso/index.md index 9ae8b95..0ef6686 100644 --- a/content/posts/authelia-selfhosted-sso/index.md +++ b/content/posts/authelia-selfhosted-sso/index.md @@ -1,9 +1,8 @@ --- title: "Authelia : a selfhosted SSO" date: 2022-04-10 -draft: false slug: "authelia-selfhosted-sso" -tags: ["sso", "tools"] +tags: ["authentication", "docker", "sso", "tools"] type: "security" --- @@ -29,7 +28,7 @@ First of all, let's start by installing and configuring the docker. For that you In my case I use Unraid and a template is directly available. I just have to set the port to use for the web interface. - +Unraid docker setup Before launching the docker we will have to make several changes to the configuration file. @@ -105,7 +104,7 @@ docker run --rm authelia/authelia:latest authelia hash-password 'yourpassword' If this does not work you can manually create the hash using this [site](https://argon2.online) and these parameters: - +Argon2 hash generator ### Access control For the access policy we will do something simple with a single role. But nothing prevents you from creating several roles with different rights and access. @@ -285,17 +284,17 @@ real_ip_recursive on; Then you can add it in the `Advanced` tab of the desired subdomain: - +NginxProxyManager new proxy host advanced options After saving, go to the address of your subdomain to verify that it works. You should arrive on the following page: - +Authelia login page You can connect with one of the credencials you created in the `users_database.yml` file. Once the connection is done, you should be redirected to the application hosted on the subdomain! To configure/modify the double authentication method, go to the subdomain you have configured for Authelia (`ex. auth.youdomain.com`). Then select `Methods`: - +Authelia 2FA modal ## Conclusion diff --git a/content/posts/how-to-host-multiple-services-on-one-public-ip/index.md b/content/posts/how-to-host-multiple-services-on-one-public-ip/index.md index b07f798..b62ea20 100644 --- a/content/posts/how-to-host-multiple-services-on-one-public-ip/index.md +++ b/content/posts/how-to-host-multiple-services-on-one-public-ip/index.md @@ -1,9 +1,8 @@ --- title: "How to host multiple services on one public IP ?" date: 2022-02-28 -draft: false slug: "how-to-host-multiple-services-on-one-public-ip" -tags: ["reverse proxy"] +tags: ["ddns", "docker", "network", "reverse proxy"] type: "infrastructure" --- @@ -19,7 +18,7 @@ As described in the intro one of the big problems of self hosted on a non profes > Dynamic DNS (DDNS) is a method of automatically updating a name server in the Domain Name System (DNS), often in real time, with the active DDNS configuration of its configured hostnames, addresses or other information. > β€” [Wikipedia](https://en.wikipedia.org/wiki/Dynamic_DNS) - +DDNS schematic The operation of DDNS is separated into 3 parts: @@ -37,11 +36,11 @@ If you have a fixed IP with your internet provider, you do not need to do the fo In my case I decided to use [DuckDNS](https://www.duckdns.org), it's a free service and easily configurable. First you will have to create an account with the service of your choice. Then you have to get your token, it's your unique identifier that will allow DuckDNS to identify you. - +DuckDNS token page You will now have to create a sub domain to the duckdns.org domain. To do this, simply fill in the "sub domain" field and click on "add domain". - +DuckDNS add domain Then go to your docker manager to install the [linuxserver/duckdns](https://hub.docker.com/r/linuxserver/duckdns) docker. The docker compose is quite simple, you just have to indicate the two following elements: @@ -52,7 +51,7 @@ TOKEN=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx You can then launch the docker, if all is well configured you can return to DuckDNS and verify that it has received your IP: - +DuckDNS current IP ## Sub-domain creation Now that we have a domain at DuckDNS, we will have to link our personal domain/sub-domain to the DuckDNS sub-domain. @@ -66,7 +65,7 @@ To do the redirection you have to create DNS entries of type CNAME. To create a CNAME entry, all you need is a sub-domain and a target : - +OVH DNS zone setup In this example I create a sub-domain "www.d3vyce.fr" which redirects to the DuckDNS domain "xxxx.duckdns.org". Once the information is propagated on the different DNS servers, I should be able to access the IP of my box via this sub-domain. @@ -97,7 +96,7 @@ To do this we will set up a Reserve Proxy. > A reverse proxy server is a type of proxy server that typically sits behind the firewall in a private network and directs client requests to the appropriate backend server. > β€” [Nginx.com](https://www.nginx.com/resources/glossary/reverse-proxy-server) - +Reverse Proxy schematic Globally the reverse proxy will inspect the source domain to determine which local IP/Port to redirect the request to. @@ -145,7 +144,7 @@ Password: changeme After creating a user, we can add our first service! To do this go to the Hosts -> Proxy Hosts tab. Now click on "Add Proxy Host". - +NginxProxyManager new proxy host This is where we will have to fill in our sub-domain, local IP of the service and its port. In the example above, I configure the sub-domain "test.d3vyce.fr" with the local web server which is at the address 192.168.1.10:80. @@ -157,7 +156,7 @@ The "Websockets Support" option can be the cause of problems for some applicatio Now let's configure our SSL certificate. - +NginxProxyManager new proxy host SSL options Select the option "Request a new SSL Certificate" then the options "Force SSL", "HTTP/2 Support" and "HSTS Enabled". Then fill in our email and accept the terms of service. You can now save. After a few seconds you should see the status "Online" for your subdomain. If you have no errors you can now access your service with this subdomain! Using the same principle, you can setup other services. diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-1.png b/content/posts/how-to-index-your-blog-on-google/img/image-1.png index da9fe08..5c42f4c 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-1.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5e4cae6e28529edf11d451b03d072f197fa079bac7fbd89970b175cbd71a0eb -size 48993 +oid sha256:94b1423766c83b94db7a7d24e3c4342b862ec41626fc8592c9bff140ed63d3a7 +size 118630 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-2.png b/content/posts/how-to-index-your-blog-on-google/img/image-2.png index 194311a..da9fe08 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-2.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc73975bfbd355da70f0b31506dac4644560e1c2641e2cbba3aefde74cb8fab9 -size 137682 +oid sha256:c5e4cae6e28529edf11d451b03d072f197fa079bac7fbd89970b175cbd71a0eb +size 48993 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-3.png b/content/posts/how-to-index-your-blog-on-google/img/image-3.png index 83feaff..194311a 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-3.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da3ba50b6478fd713118df340ba774aabc67c6b0355e3a1742c4a69d0b25e0d6 -size 75693 +oid sha256:cc73975bfbd355da70f0b31506dac4644560e1c2641e2cbba3aefde74cb8fab9 +size 137682 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-4.png b/content/posts/how-to-index-your-blog-on-google/img/image-4.png index 74d8ea4..83feaff 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-4.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37c9386ac2939576004ff1832522b6a5dd37e3428ffe1abab01fc9c87121b4d9 -size 115884 +oid sha256:da3ba50b6478fd713118df340ba774aabc67c6b0355e3a1742c4a69d0b25e0d6 +size 75693 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-5.png b/content/posts/how-to-index-your-blog-on-google/img/image-5.png index 78c7cdf..74d8ea4 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-5.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fdf9f3eefb8762bc8b19af6bba50243102017a376a29d892ad693c064ae69325 -size 223443 +oid sha256:37c9386ac2939576004ff1832522b6a5dd37e3428ffe1abab01fc9c87121b4d9 +size 115884 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-6.png b/content/posts/how-to-index-your-blog-on-google/img/image-6.png index 4e3ed12..78c7cdf 100644 --- a/content/posts/how-to-index-your-blog-on-google/img/image-6.png +++ b/content/posts/how-to-index-your-blog-on-google/img/image-6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ee54c905ed203e2bfb99c305bab352245169d785c3fe52db90ff9262fa0e386 -size 414578 +oid sha256:fdf9f3eefb8762bc8b19af6bba50243102017a376a29d892ad693c064ae69325 +size 223443 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image-7.png b/content/posts/how-to-index-your-blog-on-google/img/image-7.png new file mode 100644 index 0000000..4e3ed12 --- /dev/null +++ b/content/posts/how-to-index-your-blog-on-google/img/image-7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee54c905ed203e2bfb99c305bab352245169d785c3fe52db90ff9262fa0e386 +size 414578 diff --git a/content/posts/how-to-index-your-blog-on-google/img/image.png b/content/posts/how-to-index-your-blog-on-google/img/image.png deleted file mode 100644 index 5c42f4c..0000000 --- a/content/posts/how-to-index-your-blog-on-google/img/image.png +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94b1423766c83b94db7a7d24e3c4342b862ec41626fc8592c9bff140ed63d3a7 -size 118630 diff --git a/content/posts/how-to-index-your-blog-on-google/index.md b/content/posts/how-to-index-your-blog-on-google/index.md index cf58a3a..0eb197f 100644 --- a/content/posts/how-to-index-your-blog-on-google/index.md +++ b/content/posts/how-to-index-your-blog-on-google/index.md @@ -1,9 +1,8 @@ --- title: "How to index your Blog on Google Search" date: 2022-02-01 -draft: false slug: "how-to-index-your-blog-on-google" -tags: [] +tags: ["indexation", "search engine"] type: "infrastructure" --- @@ -25,7 +24,7 @@ https://search.google.com/u/0/search-console/welcome You should land on the following page which gives us the choice between two options. - +Google Search Console Domain : this option will be used only if you use your domain name only for your website and you don't have any subdomain. For example in my case I have several subdomains (ex. status.d3vyce.fr) but I don't want them to be indexed. @@ -33,7 +32,7 @@ URL prefix : this second option allows to declare a precise URL and not an entir You can then enter your domain. In my case it is https://www.d3vyce.fr. If all goes well the ownership verification of your domain is automatic. But if it's not the case, don't panic, an error message will tell you how to solve the problem. Globally, Google will provide you with a file that you should host on your site, this will verify that you have control of the site and therefore the domain. - +Ownership auto verification From this moment, the google robot will have to visit your site soon to do a scan. We could stop here but we will provide additional information to help the robot ! @@ -43,18 +42,18 @@ The majority of CMS (Content management system) have this functionality integrat In my case the sitemaps files are located at the following address: https://www.d3vyce.fr/sitemap.xml - +Sitemap list generated by Ghost This link leads to a sitemap index which is itself composed of several sitemap files. We have the choice to add file by file or directly the sitemap index. To add our sitemap, we must go to Index > Sitemaps. Then we add the link to our index file. - +Add sitemap modal After a few minutes we notice that our sitemap index has been detected and that our 5 sitemaps have been imported! - - +Submitted sitemaps +Sitemaps list After this step, there is nothing left to do but wait. This can take from a few hours to several weeks in some cases.--- @@ -62,7 +61,7 @@ After this step, there is nothing left to do but wait. This can take from a few ## Update After about 36 hours, my blog has been indexed on google and is now accessible with a simple search! - +Google result for blog I then went to see the access logs of the site and we can observe the passages of the Googlebot which scans the site: ``` diff --git a/content/posts/how-to-make-daily-backups-of-your-homelab/index.md b/content/posts/how-to-make-daily-backups-of-your-homelab/index.md index 4789410..78899fc 100644 --- a/content/posts/how-to-make-daily-backups-of-your-homelab/index.md +++ b/content/posts/how-to-make-daily-backups-of-your-homelab/index.md @@ -1,9 +1,8 @@ --- title: "How to make daily backups of your HomeLab with Rclone?" date: 2022-07-19 -draft: false slug: "how-to-make-daily-backups-of-your-homelab" -tags: ["backup", "tools"] +tags: ["backup", "docker", "storage", "tools"] type: "infrastructure" --- @@ -17,7 +16,7 @@ You have your local homelab in which you store all your data. You have set up se > - 1: The final β€œone” referred to the rule that one copy of the two backups should be taken off-site, so that anything that affected the first copy would not (hopefully) affect it. > β€” [computerweekly.com](computerweekly.com) - +321 backup rule 3-2-1 Backup Rule allows to store data with almost no risk of loss. Today many people agree that this rule does not really make sense with the arrival of the cloud. Indeed, providers such as Google, Amazon, ... have replication systems on several disks, but especially in several locations. All this remains invisible for the user, but these securities are well present. @@ -90,17 +89,17 @@ In the script plugin of Unraid I add the different scripts with the following ex This should result in the following: - +Script list in Unraid After waiting one day I check on the drive that the backup has been done: - +Save zip in Google Drive And indeed there is an archive of about 1Gb that has been uploaded in the save_mark1 folder. The system works ! I then let the script run for several days to see if the history system works well. As you can see I have a history of the file for about 30 days. An interesting thing to know is that only the archive consumes space on my drive and not all the versions in the history. This makes it consume ~1Gb with 30 versions of the archive accessible. - +Versions list in Google Drive ## Conclusion diff --git a/content/posts/migrate-from-ghost-to-hugo/index.md b/content/posts/migrate-from-ghost-to-hugo/index.md index 975bf9d..49059d5 100644 --- a/content/posts/migrate-from-ghost-to-hugo/index.md +++ b/content/posts/migrate-from-ghost-to-hugo/index.md @@ -1,9 +1,9 @@ --- title: "Migrate from Ghost to Hugo" date: 2024-02-17 -draft: false +draft: true slug: "migrate-from-ghost-to-hugo" -tags: [] +tags: ["ci/cd", "docker", "hugo"] type: "programming" --- diff --git a/content/posts/my-current-homelab/icon/adguardhome.png b/content/posts/my-current-homelab/icon/adguardhome.png new file mode 100644 index 0000000..a29746d --- /dev/null +++ b/content/posts/my-current-homelab/icon/adguardhome.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b741fdcea22eb638d95d4bab470b7062e0717bb070ec647f4c41d5407ac08e +size 3581 diff --git a/content/posts/my-current-homelab/icon/bazzar.png b/content/posts/my-current-homelab/icon/bazzar.png new file mode 100644 index 0000000..495edfc --- /dev/null +++ b/content/posts/my-current-homelab/icon/bazzar.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2566fce3e151c67cb0125d53ab6be991c575f35d0f4c5bf7e310bc840fc8c2a +size 1655 diff --git a/content/posts/my-current-homelab/icon/bitwarden.png b/content/posts/my-current-homelab/icon/bitwarden.png new file mode 100644 index 0000000..5fc91c7 --- /dev/null +++ b/content/posts/my-current-homelab/icon/bitwarden.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b831459e0fd49e4fdd98a49d8ffadd81ff8805b5591bb38b2b6948abeb9e9e33 +size 1608 diff --git a/content/posts/my-current-homelab/icon/deluge.png b/content/posts/my-current-homelab/icon/deluge.png new file mode 100644 index 0000000..b5ba814 --- /dev/null +++ b/content/posts/my-current-homelab/icon/deluge.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639206899c313dc5c1c4d09310d995118ca7e659d9606c49b37f3ad9d2bf6fdf +size 5844 diff --git a/content/posts/my-current-homelab/icon/gitea.png b/content/posts/my-current-homelab/icon/gitea.png new file mode 100644 index 0000000..50f9b38 --- /dev/null +++ b/content/posts/my-current-homelab/icon/gitea.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8387c05e4644531a2d724e5c0ffd82851e5dcb15c980fddc1bdc82142b40227 +size 2289 diff --git a/content/posts/my-current-homelab/icon/homeassistant.png b/content/posts/my-current-homelab/icon/homeassistant.png new file mode 100644 index 0000000..ead4124 --- /dev/null +++ b/content/posts/my-current-homelab/icon/homeassistant.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529d551e8b6231c204d1f21062d8701daa738351440859bb7d73638a86ac6525 +size 4063 diff --git a/content/posts/my-current-homelab/icon/jackett.png b/content/posts/my-current-homelab/icon/jackett.png new file mode 100644 index 0000000..c0bf54b --- /dev/null +++ b/content/posts/my-current-homelab/icon/jackett.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ef74730c7b37258c74743d6bb3f91858d625f2bba2dfbe9ce86cf4b742b2c7 +size 1501 diff --git a/content/posts/my-current-homelab/icon/nginxproxymanager.png b/content/posts/my-current-homelab/icon/nginxproxymanager.png new file mode 100644 index 0000000..42167bc --- /dev/null +++ b/content/posts/my-current-homelab/icon/nginxproxymanager.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:752bf9f9048684e92c597a397e7569051689b4a9e3f616a8c85e9aa524eafb0c +size 6050 diff --git a/content/posts/my-current-homelab/icon/plex.png b/content/posts/my-current-homelab/icon/plex.png new file mode 100644 index 0000000..4faf856 --- /dev/null +++ b/content/posts/my-current-homelab/icon/plex.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd12c2c769f1a9f9d17c91c8c09da7e0516aa03125fa6ea1a264a6178cf4334 +size 4668 diff --git a/content/posts/my-current-homelab/icon/Radarr.png b/content/posts/my-current-homelab/icon/radarr.png similarity index 100% rename from content/posts/my-current-homelab/icon/Radarr.png rename to content/posts/my-current-homelab/icon/radarr.png diff --git a/content/posts/my-current-homelab/icon/sonarr.png b/content/posts/my-current-homelab/icon/sonarr.png new file mode 100644 index 0000000..c797f92 --- /dev/null +++ b/content/posts/my-current-homelab/icon/sonarr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e12c52162e14999e37a9ae2e3c5e00ef735f71f7752cb0a4247392f1b5d38f +size 3690 diff --git a/content/posts/my-current-homelab/index.md b/content/posts/my-current-homelab/index.md index 03bfbb0..ad8a582 100644 --- a/content/posts/my-current-homelab/index.md +++ b/content/posts/my-current-homelab/index.md @@ -1,9 +1,8 @@ --- title: "My current Homelab" date: 2022-02-11 -draft: false slug: "my-current-homelab" -tags: [] +tags: ["docker", "network", "storage"] type: "infrastructure" --- @@ -45,7 +44,7 @@ Currently my homelab is composed of the following elements: --- ## Topology - +Homelab topology In terms of network architecture it is quite simple, there is only one subnet, the 10.0.0.0/24, that I have subdivided for the different equipment: - 10.0.0.1 : Unifi Dream Machine @@ -59,7 +58,7 @@ The vast majority of services/VM/storage are on the Mark1 server. This server is [Unraid](https://unraid.net) is a paid OS that is offered in 3 versions: - +Unraid license options The only difference is the number of storage devives we can install in our server. In my case I am on the "Plus" version. It's a one time payment that allows you to unlock all the features. @@ -75,17 +74,17 @@ Mark2 is a server under Ubuntu Server, it is notably used for game servers (Mine As you can see on the diagram there are many services running in my homelab. Most of them are on the "Mark1" server and are Dockers. | | Name | Description | | ----------- | ----------- | ----------- | -| ![Radarr-3](https://blog.d3vyce.fr/content/images/2022/02/Radarr-3.png) | Radarr | Movie collection manager | -| ![Sonarr-1](https://blog.d3vyce.fr/content/images/2022/02/Sonarr-1.png) | Sonarr | Series collection manager | -| ![Bazzar](https://blog.d3vyce.fr/content/images/2022/02/Bazzar.png) | Bazzar | Subtittle finder for movie and series | -| ![Jackett](https://blog.d3vyce.fr/content/images/2022/02/Jackett.png) | Jackett | Proxy server for indexer | -| ![AdGuardhome](https://blog.d3vyce.fr/content/images/2022/02/AdGuardhome.png) | AdGuardHome | DNS for blocking ads and tracking | -| ![Bitwarden](https://blog.d3vyce.fr/content/images/2022/02/Bitwarden.png) | Bitwarden | Password manager | -| ![Deluge](https://blog.d3vyce.fr/content/images/2022/02/Deluge.png) | Deluge | Torrent downloader | -| ![Gitea](https://blog.d3vyce.fr/content/images/2022/02/Gitea.png) | Gitea | Local github | -| ![Home-assistant](https://blog.d3vyce.fr/content/images/2022/02/Home-assistant.png) | Home Assistant | IOT manager (Zigbee) | -| ![NginxProxyManager](https://blog.d3vyce.fr/content/images/2022/02/NginxProxyManager.png) | Nginx Proxy Manager | Reverse Proxy | -| ![Plex](https://blog.d3vyce.fr/content/images/2022/02/Plex.png) | Plex | Movie and series remote access | +| radarr | Radarr | Movie collection manager | +| sonarr | Sonarr | Series collection manager | +| bazzar | Bazzar | Subtittle finder for movie and series | +| jackett | Jackett | Proxy server for indexer | +| adguardhome | AdGuardHome | DNS for blocking ads and tracking | +| bitwarden | Bitwarden | Password manager | +| deluge | Deluge | Torrent downloader | +| gitea | Gitea | Local github | +| homeassistant | Home Assistant | IOT manager (Zigbee) | +| nginxproxymanager | Nginx Proxy Manager | Reverse Proxy | +| plex | Plex | Movie and series remote access | @@ -93,7 +92,7 @@ In addition to these services, I have two database managers: MariaDB and Redis. In terms of VMs on Mark1, I have 2 Ubuntu VMs for web hosting. A GNS3 VM for network tests. A VM containing Home Assistant. A Debian VM for a Docker project in progress and a Kali VM to do Pentesting and have access to cyber tools in remote. - +Virtual Machines tab in Unraid --- diff --git a/content/projects/d3vyce-fr/index.md b/content/projects/d3vyce-fr/index.md index 8744b1d..24792bd 100644 --- a/content/projects/d3vyce-fr/index.md +++ b/content/projects/d3vyce-fr/index.md @@ -1,19 +1,18 @@ --- title: "d3vyce.fr" date: 2022-08-06 -draft: false slug: "d3vyce-fr" showAuthor: false showWordCount: false showReadingTime: false showRelatedContent: false showPagination: false -tags: ["css3", "html5", "javascript", "bootstrap"] +tags: ["bootstrap", "css3", "html5", "javascript"] --- ## Overview - +overview {{< github repo="d3vyce/d3vyce.fr" >}} Development of my personal website in addition to my Blog. diff --git a/content/projects/homelab/index.md b/content/projects/homelab/index.md index fe8d733..d4860d2 100644 --- a/content/projects/homelab/index.md +++ b/content/projects/homelab/index.md @@ -1,14 +1,13 @@ --- title: "Homelab" date: 2019-07-21 -draft: false slug: "homelab" showAuthor: false showWordCount: false showReadingTime: false showRelatedContent: false showPagination: false -tags: ["opnsense", "wireguard", "docker", "unraid", "qemu"] +tags: ["docker", "opnsense", "qemu", "unraid", "wireguard"] --- Initially, my goal was to create a media server accessible from anywhere with Plex. diff --git a/content/projects/pentools/index.md b/content/projects/pentools/index.md index 465266c..5f53eaf 100644 --- a/content/projects/pentools/index.md +++ b/content/projects/pentools/index.md @@ -1,19 +1,18 @@ --- title: "Pentools" date: 2023-01-29 -draft: false slug: "pentools" showAuthor: false showWordCount: false showReadingTime: false showRelatedContent: false showPagination: false -tags: ["bash"] +tags: ["bash", "tools"] --- ## Overview - +overview {{< github repo="d3vyce/pentools" >}} Pentools is a bash script that lets you quickly set up a Debian like machine. diff --git a/content/projects/teleinfo-exporter/index.md b/content/projects/teleinfo-exporter/index.md index ade883d..cace564 100644 --- a/content/projects/teleinfo-exporter/index.md +++ b/content/projects/teleinfo-exporter/index.md @@ -1,20 +1,18 @@ --- title: "Teleinfo Exporter" date: 2023-12-19 -draft: false slug: "teleinfo-exporter" -# summary: "Template for creating a recipe for Blowfish theme" showAuthor: false showWordCount: false showReadingTime: false showRelatedContent: false showPagination: false -tags: ["python", "prometheus", "docker", "grafana", "esp32", "mqtt"] +tags: ["docker", "esp32", "grafana", "mqtt", "prometheus", "python"] --- ## Overview - +overview {{< github repo="d3vyce/teleinfo-exporter" >}} Teleinfo Exporter is a simple Prometheus exporter for Linky (French smart electricity meter). diff --git a/content/projects/url-shortener/index.md b/content/projects/url-shortener/index.md index 86e8de4..32cd214 100644 --- a/content/projects/url-shortener/index.md +++ b/content/projects/url-shortener/index.md @@ -1,12 +1,12 @@ --- title: "URL Shortener" date: 2023-03-05 -draft: false +draft: true slug: "url-shortener" showAuthor: false showWordCount: false showReadingTime: false showRelatedContent: false showPagination: false -tags: ["python", "docker", "sql", "flask"] +tags: ["docker", "flask", "python", "sql"] --- diff --git a/layouts/_default/about.html b/layouts/_default/about.html new file mode 100644 index 0000000..4d74524 --- /dev/null +++ b/layouts/_default/about.html @@ -0,0 +1,44 @@ +{{ define "main" }} +{{ $disableImageOptimization := .Site.Params.disableImageOptimization | default false }} +
+
+ {{ with .Site.Author.image }} + {{ $authorImage := resources.Get . }} + {{ if $authorImage }} + {{ if not $disableImageOptimization }} + {{ $authorImage = $authorImage.Fill "288x288" }} + {{ end }} + {{ $.Site.Author.name | default + {{ end }} + {{ end }} +

+ {{ .Site.Author.name | default .Site.Title }} +

+
+ {{ partialCached "author-links.html" . }} +
+
+
+
+
+ {{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }} + {{ partial "breadcrumbs.html" . }} + {{ end }} +

+ {{ .Title | emojify }} +

+
+
+ {{ .Content | emojify }} +
+ +
+{{ end }} diff --git a/layouts/categories/simple.html b/layouts/_default/categories.html similarity index 100% rename from layouts/categories/simple.html rename to layouts/_default/categories.html