1
00:00:00,870 --> 00:00:06,480
Let us verify the https access using elinks browser and curl browser, when we are going to use the

2
00:00:06,480 --> 00:00:13,140
elinks command --dump https://www.example.com, you will see that it is going to show you

3
00:00:13,740 --> 00:00:20,260
eroor ssl error same way when we are going to use curl https://www.example.com

4
00:00:20,490 --> 00:00:29,190
Then again, it is going to show some error peer's certificate issuer has been marked as not trusted because in our

5
00:00:29,190 --> 00:00:35,490
case we are not using the certificate that has been created by some renowned certificate authority.

6
00:00:35,790 --> 00:00:41,640
In our case, we are using the self signed certificate, so most of the browser they will give this

7
00:00:41,640 --> 00:00:42,050
error.

8
00:00:42,630 --> 00:00:49,590
So for accepting this, we have to make changes that mean when we are running the command curl and elinks,

9
00:00:49,860 --> 00:00:54,490
we have to make certain changes then only, we are going to run this command.

10
00:00:54,840 --> 00:00:59,090
So what we will do with Curl Command just specify -k option.

11
00:00:59,460 --> 00:01:06,380
So with k option it will override that objection that it is self-signed certificate.

12
00:01:06,660 --> 00:01:13,170
When you are going to do that, then it will show you the data that 4 records are available

13
00:01:13,380 --> 00:01:20,120
that mean it will be able to access that https, we are running this command and for elinks

14
00:01:20,150 --> 00:01:27,840
we have to just modify the certain settings, we will open the elinks.config file in which there is

15
00:01:27,840 --> 00:01:32,350
one option connection.ssl.cert_verify.

16
00:01:32,370 --> 00:01:35,850
One option is there, we will change the value from 1 to 0.

17
00:01:36,390 --> 00:01:40,020
Then we will again run the elinks dump.

18
00:01:40,440 --> 00:01:46,000
Command, then it is going to show you the data, 0 mean please do not verify the.

19
00:01:46,050 --> 00:01:50,610
origin of certificate that mean it will accept the self-signed certificate also.
