From dc88ccf47b4dd96df1d2648ddf6f3a36979ebd34 Mon Sep 17 00:00:00 2001
From: Laurent Modolo <laurent.modolo@ens-lyon.fr>
Date: Tue, 14 Sep 2021 12:13:49 +0200
Subject: [PATCH] tp.md: fix git serveur link

---
 tp.md | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/tp.md b/tp.md
index 45de6f0..5f2636b 100644
--- a/tp.md
+++ b/tp.md
@@ -1,9 +1,9 @@
 # Setup your environment
 
-We are going to write some basic configuration files to be able to connect to the [gitlab server of the LBMC](http://gitlab.biologie.ens-lyon.fr).
+We are going to write some basic configuration files to be able to connect to the [gitlab server of the LBMC](http://gitbio.ens-lyon.fr).
 If you are not using your own laptop, remember to delete your `~/.ssh` folder at the end of the TP.
 Otherwise, somebody else could use your ssh key if you don’t protect them with a password.
-But don’t stress too much about it, you can always remove the key later from your [gitlab configuration](http://gitlab.biologie.ens-lyon.fr/profile/keys).
+But don’t stress too much about it, you can always remove the key later from your [gitlab configuration](http://gitbio.ens-lyon.fr/profile/keys).
 
 Throughout this practical, every string between chevrons `<like this one>` must be replaced with the adequate value.
 
@@ -59,9 +59,8 @@ Otherwise, `ssh` won’t let you use this configuration file for security reason
 - You need to add the following lines to the file `~/.ssh/config` to use it automatically for connection to `gitlab_lbmc`.
 
 ```sh
-Host gitlab_lbmc
-    Port            2222
-    HostName        gitlab.biologie.ens-lyon.fr
+Host gitbio.ens-lyon.fr 
+    HostName        gitbio.ens-lyon.fr
     User            git
     IdentitiesOnly  yes
     IdentityFile    ~/.ssh/id_rsa_gitlab_lbmc
@@ -69,7 +68,7 @@ Host gitlab_lbmc
 
 This configuration provides you with the shortcut `gitlab_lbmc` to connect to the `gitlab.biologie.ens-lyon.fr` server on the port `2222` under the `git` user, without using a password and using the identity key ` ~/.ssh/id_rsa_gitlab_lbmc`.
 
-- Finally, go to [http://gitlab.biologie.ens-lyon.fr/profile/keys](http://gitlab.biologie.ens-lyon.fr/profile/keys) and paste the content of the file `~/.ssh/id_rsa_gitlab_lbmc.pub`
+- Finally, go to [http://gitbio.ens-lyon.fr/profile/keys](http://gitbio.ens-lyon.fr/profile/keys) and paste the content of the file `~/.ssh/id_rsa_gitlab_lbmc.pub`
 
 To test your connection run:
 
-- 
GitLab