How to Set Up SSL with NGINX

How to Set Up SSL with NGINX

NGINX

5 лет назад

196,975 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

handsinthepocketsguy
handsinthepocketsguy - 06.09.2023 10:12

She used spaces instead of tabs?!? Sacrilege!

Ответить
Kajal Kuchekar
Kajal Kuchekar - 30.05.2023 20:11

are you guys even able tp see whats written

Ответить
Bruh Crap
Bruh Crap - 05.12.2022 04:41

dude, this guy likes to hack people's accounts

Ответить
ZillaYT
ZillaYT - 09.09.2022 13:26

Why do people use small fonts?

Ответить
Alex
Alex - 18.07.2022 19:18

I get "ERR_TOO_MANY_REDIRECTS" :(

Ответить
Fahad Nadeem
Fahad Nadeem - 01.07.2022 03:03

helpful

Ответить
Tanishq Singh
Tanishq Singh - 27.06.2022 05:42

finally something worked, thankyou 🥺🥺

Ответить
IVEO
IVEO - 19.06.2022 13:28

i do the same setup as video but it shows "nginx: configuration file /etc/nginx/nginx.conf test failed"
after i submit the "nginx -t" 🥲

Ответить
Minh Thịnh Huỳnh Lê
Minh Thịnh Huỳnh Lê - 18.05.2022 19:31

Too bad Resolution !!! Please focus on the terminal and zoom it as big as possible

Ответить
Relab TV
Relab TV - 03.05.2022 21:44

helpful simple explanation, love it!

Ответить
Jake Doran
Jake Doran - 19.04.2022 16:30

we're gonna go ahead and...

Ответить
Filipe
Filipe - 18.04.2022 18:44

how to remove error invalid cert ?

Ответить
Diyorbek Tolibov
Diyorbek Tolibov - 12.04.2022 15:44

It works in my server. Thanks for video!

Ответить
David Murphy
David Murphy - 01.02.2022 13:56

I stand zero chance of being able to read this miniscule code on my phone. Bigger font please.

Ответить
sweetvenom
sweetvenom - 22.09.2021 06:48

That convinces me some people are born teachers and vice-versa... I wasted so much time to no avail and even when I made it work I didn't know what I did right. Thankyou for helping!

Ответить
Matthew Barrett
Matthew Barrett - 21.09.2021 08:37

i used aws to set up NGINX and used a route 53 to link my domain since i didnt host it on AWS, should i be putting hte domain name or the ip address in when coding this in?

Ответить
Home User
Home User - 12.09.2021 21:48

I am so happy!

Ответить
Krishnam G
Krishnam G - 03.09.2021 22:47

Thanks this helped.

Ответить
Nightpire
Nightpire - 29.08.2021 18:13

Worked for me without the 301 redirect. Thank you!

Ответить
Dmytro
Dmytro - 25.08.2021 14:34

WHY IS IT SO COMPLICATED? I mean NGINX config. Shoudn't the .conf file be added to sites-enabled to take effect?

Ответить
Rakesh PK
Rakesh PK - 09.05.2021 15:07

Commands are not readable when viewing on mobile devices.

Ответить
Rajesh Raghu
Rajesh Raghu - 30.04.2021 01:40

Poor video making. Such a small screen size. Should have maximised the terminal and increased the font size. Waste of time

Ответить
Rickard Deman
Rickard Deman - 17.03.2021 18:03

Am I misundrstanding something? Wasn't the purpose to set up ssl? Because the ssl still says not secure in the end?

Ответить
console dot error
console dot error - 16.03.2021 16:07

font size too small for me.

Ответить
m chun
m chun - 17.02.2021 07:14

why don't this tutorial use ssl on; statement in config file?
I followed this ssl tutorial with ssl on; missing. and it didnt' work.
then I inserted "ssl on;", it worked!
I am new to this whole thing!
maybe nginx changed since 2018?

Ответить
javier ramirez
javier ramirez - 11.02.2021 21:03

you don´t know how happy I feel, I have been trying to figure this out whole day, It is super easy

Ответить
African Dissident
African Dissident - 09.02.2021 02:20

It may be helpful to provide a link to the video referenced in the start of this tutorial - "How to serve starter static content video".

Ответить
Christian Abreu
Christian Abreu - 06.02.2021 08:17

Great. Thanks!

Ответить
Celfin K Magadu
Celfin K Magadu - 24.01.2021 14:13

How do iI do all of this in w windows server , please help.

Ответить
Ryden Soko
Ryden Soko - 24.11.2020 00:36

Maybe its a given but to anyone trying to troubleshoot errors please first make sure you DO have port 443 open for inbound traffic to your server :)

Also thanks for the video; very short, sweet, and to the point!

Ответить
K- Diddy
K- Diddy - 18.10.2020 19:28

By default, should there be something in the condition.d file location because mine shows that it’s empty

Ответить
Yamen Shabankabakibou
Yamen Shabankabakibou - 15.10.2020 22:23

how to remove the not secure sign

Ответить
slim rambo
slim rambo - 26.08.2020 16:05

next time zoom in cause i cant see shit

Ответить
Van Tyc
Van Tyc - 21.08.2020 17:16

Works perfect! Thank you. How to do the same but with two or more domains?

Ответить
Jaime Cossio Cristia
Jaime Cossio Cristia - 21.08.2020 05:15

Certificado Invalido. El ejemplo no sirve.
Invalid Certificate . The example was not found!!

Ответить
rakesh verma
rakesh verma - 15.08.2020 13:12

Good

Ответить
Ligth Yagamy
Ligth Yagamy - 28.07.2020 01:10

server {
listen 80;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name localhost;

location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
try_files $fastcgi_script_name =404;
include fastcgi_params;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
}

location ~ .php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}

location ~ /.ht {
deny all;
}
}




alguien ayuda

Ответить
Adventurous Nomad
Adventurous Nomad - 14.04.2020 12:22

thank you very much...it worked 100%......i love the background music btw

Ответить
Adventurous Nomad
Adventurous Nomad - 14.04.2020 12:22

thank you very much...it worked 100%......i love the background music btw

Ответить
Richard Mer
Richard Mer - 06.02.2020 11:04

I love you! thanks!!

Ответить
normajeanchariot
normajeanchariot - 11.01.2020 09:44

Why does she create a whole new conf file? It seems she would have two being the default.conf file AND the www.example.com.conf file. Why wouldnt you just modify the existing conf file? And how does the server know which conf file to use?

Ответить
normajeanchariot
normajeanchariot - 06.01.2020 12:40

Doesn't work for me. I get error number 110 and 111

Ответить
John Doe
John Doe - 16.11.2019 13:30

Very useful. But, the problem of this video is that it's hard to see anything. One have to go fullscreen to be able to read the commands. Anyway, thumbs up

Ответить
Marc Kaeser
Marc Kaeser - 27.09.2019 15:49

yeah that was very helpful, thank you very much :-)

Ответить
Diego Monge
Diego Monge - 08.09.2019 00:07

thanks

Ответить