Hi Expert, I had gone through this guide: https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-20-04 and successfully setup the http server. But i have 2 questions.
Can i have 2 listeners: port 80 and 443 in the same file ( /etc/nginx/sites-available/your_domain)
I got my domain and SSL from Namecheap. I had update the NS and the traffic has redirected to DigitalOcean (correct way). But is there anyway to get the SSL from Namecheap and insert into the NGINX server?
Thanks!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there,
Yes, it is possible to have two Nginx server blocks, one for port 80 and one for port 443 for the same domain name.
In the SSL Nginx server block, you need to make sure that you have the following details:
listen 443;
server_name your_domain.com www.your_domain.com;
ssl on;
ssl_certificate /etc/nginx/ssl/yourdomain-bundle.crt;
ssl_certificate_key /etc/nginx/ssl/yourdomain.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
Then make sure that you’ve added your SSL private key and the certificate bundle to those files specified din the config accordingly.
Before restarting Nginx, make sure to run a config test with: nginx -t and if you get Syntax OK then proceed and restart the Nginx service.
Let me know how it goes!
Best,
Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.