diff --git a/README.md b/README.md
index 63463a8fe1005fa8bdec490fd06df0c23863ba7b..ea343f2e1cdd00140cbac724e244c3fa5e48d1de 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ In windows we can use the cmd or powershell.
 #### cmd
 To enter into the cmd, press windows key + r, write cmd, and press enter. That will open the cmd console. Write the following commands to install this certificate. Adding certificate this way will make it valid in chrome, edge and internet explorer. 
 <pre>
-set CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem
+set CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/public/ca/-/raw/master/ca.crt.pem
 set CA_FILE_PATH=%TEMP%\ca.crt.pem
 echo download ca from %CA_RAW_URL% to %CA_FILE_PATH%
 powershell -command "$cli = New-Object System.Net.WebClient; $cli.DownloadFile('%CA_RAW_URL%', '%CA_FILE_PATH%')" 
@@ -27,7 +27,7 @@ In linux we can use terminal.
 #### cmd
 To enter into the terminal, press ctrl + alt + t. That will open the terminal console. Write the following commands to install this certificate. Adding certificate this way will make it valid in chrome, and firefox. 
 <pre>
-export CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/ca/-/raw/master/ca.crt.pem
+export CA_RAW_URL=https://git.code.tecnalia.com/smartdatalab/public/ca/-/raw/master/ca.crt.pem
 export TEMP_PATH=$(mktemp -d)
 export CA_FILE_PATH=$TEMP_PATH/ca.crt.pem
 echo download ca from $CA_RAW_URL to $CA_FILE_PATH