X
X

Contact us

İnönü Mahallesi, Babil Sokak, No: 8 34373 - Şişli / İSTANBUL

08505511033

info@eniyisunucum.com

muhasebe@eniyisunucum.com

abuse@eniyisunucum.com

Features

Knowledge Base
Month Read Expired: 3 Minute

Centos 7 Nginx kurulu sunucuda Let's Encrypt ile SSL Oluşturma

Centos 7 işletim sistemine sahip sunucuda nginx üzerinden yayınladığınız domaininiz için ücretsiz SSL kullanmak istiyor olabilirsiniz. Aşağıdaki makalede adımları izlerseniz Let's Encrypt ile ücrretsiz SSL oluşturacağız.

 

cd /opt;
git clone https://github.com/letsencrypt/letsencrypt;
service nginx stop;
chmod +x letsencrypt-auto;
./letsencrypt-auto certonly --standalone -d your_domain.tld -d www.yourdomain.tld;

 

Son komutun çıktısında oluşan SSL ve private key'in yolunu görebilirsiniz.nginx.conf dosyasına aşağıdaki gibi yolunu belirtelim.

 

ssl_certificate /etc/letsencrypt/live/your_domain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/your_domain.tld/privkey.pem;

 

Son işlem olarak nginx servisini yeniden başlatalım.

 

service nginx start

 

Can't find the information you are looking for?

Create a Support Ticket
Did you find it useful?
(131 times viewed / 0 people found it helpful)