Рубрики
Uncategorized

Как создать самозагодный сертификат SSL на Ubuntu с nginx

Как вы можете создать сертификат SSL на Ubuntu с nginx

Автор оригинала: Ousseynou Diop.

Вступление

В этом руководстве я помогу вам создать SSL-сертификат, используя Nginx и Certbot на Ubuntu.

SSL-сертификаты Защитите свою конфиденциальную информацию, такую как информация о кредитной карте, имена пользователей, пароли …

Nginx Это бесплатный, открытый источник, высокопроизводительный HTTP-сервер.

Certbot Является бесплатным программным инструментом с открытым исходным кодом для автоматического использования, давайте шифруйте сертификаты на администрированных вручную веб-сайтам для включения HTTPS.

Требования

Nginx Ubuntu Комфорт с командная строка/терминал

Установка

1- Войдите в свой сервер

$ ssh username@YOUR_SERVER_IP

2- Добавить Certbot PPA

$ sudo apt-get update
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository universe
$ sudo add-apt-repository ppa:certbot/certbot
$ sudo apt-get update

3- Установите CERTBOT

$ sudo apt-get install certbot python-certbot-nginx

4- Создать сертификат

$ sudo certbot --nginx

Выберите свой домен

[sudo] password for username:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator nginx, Installer nginx

Which names would you like to activate HTTPS for?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: yourdomaine.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel): 1

Выберите, следует ли перенаправить HTTP-трафик к HTTPS.

Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: No redirect - Make no further changes to the webserver configuration.
2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for
new sites, or if you're confident your site works on HTTPS. You can undo this
change by editing your web server's configuration.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2

Успешно выпущен

Congratulations! You have successfully enabled https://yourdomaine.com

You should test your configuration at:
https://www.ssllabs.com/ssltest/analyze.html?d=yourdomaine.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/yourdomaine.com-0001/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/yourdomaine.com-0001/privkey.pem
   Your cert will expire on 2020-04-14. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot again
   with the "certonly" option. To non-interactively renew *all* of
   your certificates, run "certbot renew"
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

5- Тест автоматического продления

$ sudo certbot renew --dry-run

Спасибо за прочтение. Увидимся в следующем руководстве

Оригинал: «https://www.codementor.io/@mstspr1155/how-to-create-an-ssl-self-signed-certificate-on-ubuntu-with-nginx-12yl9ic17x»