1
00:00:00,150 --> 00:00:07,260
Now, this is the most important step create self-signed certificate for implementing the https

2
00:00:07,260 --> 00:00:07,870
server.

3
00:00:08,220 --> 00:00:15,840
So we will be using the command openssl req mean request -new.

4
00:00:16,020 --> 00:00:21,060
That mean we will be using the master key that we created in earlier video.

5
00:00:21,480 --> 00:00:26,960
And then by using this key, what we are going to do, we are going to create a self-signed certificate

6
00:00:27,090 --> 00:00:34,370
and we are going to specify the name as our certificate as master.crt and we are going to use the format

7
00:00:34,420 --> 00:00:40,140
x509, which is the standard format for creating the certificate.

8
00:00:40,620 --> 00:00:44,850
Now when we are going to run this command, it is going to ask for the country code.

9
00:00:45,470 --> 00:00:49,910
So we are going to specify in for India then in which state you are.

10
00:00:50,160 --> 00:00:55,150
We are specifying Punjab, which city, Chandigarh then organization name.

11
00:00:55,280 --> 00:01:02,480
The name of the company U-Net Solutions then which is the unet ID, then common name.

12
00:01:02,520 --> 00:01:06,980
We are going to specify the domainname of our site.

13
00:01:06,990 --> 00:01:08,960
That is www.example.com.

14
00:01:09,150 --> 00:01:11,340
Then it is going to ask for the email address.

15
00:01:11,520 --> 00:01:16,070
We are just going to specify one admin@example.com.

16
00:01:16,410 --> 00:01:23,340
So that means we are going to create one self-sustained certificate master.crt by using openssl

17
00:01:23,340 --> 00:01:23,820
command.
