1diff --git a/_config.yml b/_config.yml
2index e3eeb051a7f924373b2d31cdbc363968426cbb43..81ab22bdfe0c095a875d3afdd783ffafc658b577 100644
3--- a/_config.yml
4+++ b/_config.yml
5@@ -3,9 +3,10 @@ email: gabriel.giovanini@pm.me
6 description: >-
7 Gabriel Giovanini's blog.
8 baseurl: ""
9-url: "https://gabrielgio.com.br"
10+url: "https://www.gabrielgio.me"
11 twitter_username: giovaninigabs
12 github_username: gabrielgio
13+gitlab_username: gabrielgio
14
15 # Build settings
16 markdown: kramdown
17diff --git a/_posts/2019-03-03-welcome-to-my-blog.md b/_posts/2019-03-03-welcome-to-my-blog.md
18index 8973461675afd056b4f231bd83bb1d32dc4bc62e..fa6244add03626f2d94717cccfa1874dd1c8441f 100644
19--- a/_posts/2019-03-03-welcome-to-my-blog.md
20+++ b/_posts/2019-03-03-welcome-to-my-blog.md
21@@ -6,5 +6,5 @@ categories: jekyll update
22 ---
23 On this blog, I'll be posting some personal projects that I'm working or some stuff that I find interesting to talk about, I hope be able to keep it interesting and produce something of value.
24
25-> Disclaimer: english it's not my native language so if you find something that you don't understand I'd love you to open an [issue](https://github.com/gabrielgio/gabrielgio.github.io/issues), or even have something to add, open a [PR](https://github.com/gabrielgio/gabrielgio.github.io/pulls)
26+> Disclaimer: english it's not my native language so if you find something that you don't understand I'd love you to open an [issue](https://gitlab.com/gabrielgio/homestation/-/issuess), or even have something to add, open a [MR](https://gitlab.com/gabrielgio/homestation/-/merge_requests)
27
28diff --git a/_posts/2019-04-22-ansible-part-2.md b/_posts/2019-04-22-ansible-part-2.md
29index 66818f224a275f830baaaf7b6768e15aa6697730..c5936de5165ca66ae960d055e89ae8ec71afcde1 100644
30--- a/_posts/2019-04-22-ansible-part-2.md
31+++ b/_posts/2019-04-22-ansible-part-2.md
32@@ -11,7 +11,7 @@ Now we're gonna setup ansible to work with a git repository. The process is quite similar with `ansible-playbook` the only difference is that command will get a repository instead of a folder. Following the previews example we'll get vim setup automated.
33
34 Do create a git repository wherever you see fit ([gitlab](https://about.gitlab.com/) and [github](https://github.com/) offer free repositories). For this task we're gonna need to add only two file: one for the `yml` file describing the tasks and the `.vimrc` file.
35
36-In the `.vimrc` add your own configuration, you can see mine [over here](https://github.com/gabrielgio/homestation/blob/241b27285d8cba8548277f3508e097439831a6eb/config/.vimrc), it is pretty simple as I don't use it but for simple text editing (like this post) so you can start with that if you don't have one.
37+In the `.vimrc` add your own configuration, you can see mine [over here](https://gitlab.com/gabrielgio/homestation/-/blob/debcf3458df511aef9f7dca0cb73f6cf6baddd5d/.vimrc), it is pretty simple as I don't use it but for simple text editing (like this post) so you can start with that if you don't have one.
38
39 The `yml` file will have two tasks, one is to install vim itself, identical as in the part 1.
40
41@@ -36,7 +36,7 @@ dest: ~/
42 mode: 0644
43 {% endhighlight %}
44
45-After adding those two files your repository will be something [like this](https://github.com/gabrielgio/homestation/tree/debcf3458df511aef9f7dca0cb73f6cf6baddd5d).
46+After adding those two files your repository will be something [like this](https://gitlab.com/gabrielgio/homestation/-/tree/debcf3458df511aef9f7dca0cb73f6cf6baddd5d).
47
48 And now we just need to run `ansible-pull` command
49
50@@ -53,7 +53,7 @@ Remember `man` is your best friend take a look at `man ansible-pull` to know more about its parameters.
51
52 The best part you can quickly test and see the result by just running my sample:
53 {% highlight bash %}
54-ansible-pull -U https://github.com/gabrielgio/homestation.git -C debcf3458df511aef9f7dca0cb73f6cf6baddd5d -i all main.yml
55+ansible-pull -U https://gitlab.com/gabrielgio/homestation.git -C debcf3458df511aef9f7dca0cb73f6cf6baddd5d -i all main.yml
56 {% endhighlight %}
57
58 The idea here is to keep your repository as a source of truth when comes to configuration, you can add this task to your cron tab, so you just need to push something to your repository and after a few minutes not only your machine but all the machines that have it setup will receive an update. You can use this method as a simple way to install software, update machines or even distribute tools company-wise.