Skip to content
Snippets Groups Projects
Commit 84b2a344 authored by Benguria Elguezabal, Gorka's avatar Benguria Elguezabal, Gorka
Browse files

moves under public

parent 53d0c07f
Branches master
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ In windows we can use the cmd or powershell. ...@@ -12,7 +12,7 @@ In windows we can use the cmd or powershell.
#### cmd #### 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. 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> <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 set CA_FILE_PATH=%TEMP%\ca.crt.pem
echo download ca from %CA_RAW_URL% to %CA_FILE_PATH% 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%')" 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. ...@@ -27,7 +27,7 @@ In linux we can use terminal.
#### cmd #### 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. 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> <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 TEMP_PATH=$(mktemp -d)
export CA_FILE_PATH=$TEMP_PATH/ca.crt.pem export CA_FILE_PATH=$TEMP_PATH/ca.crt.pem
echo download ca from $CA_RAW_URL to $CA_FILE_PATH echo download ca from $CA_RAW_URL to $CA_FILE_PATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment