Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 1361

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 62k
Author
Asked: November 25, 20242024-11-25T07:28:07+00:00 2024-11-25T07:28:07+00:00

Self-Signed SSL: NGINX on MAC

  • 62k

Till now, we have installed Nginx and did a simple configuration to host an html file locally.

In this part we will be configuring Nginx with a self-signed certificate. We will be creating a self signed certificate using openssl and make Nginx use it for serving content over https. Let's get our hands dirty. Open our pal, Terminal and lets create a couple of folders to store our key and certificate. Fire the following commands:

mkdir -p /usr/local/etc/ssl/private mkdir -p /usr/local/etc/ssl/certs 
Enter fullscreen mode Exit fullscreen mode

Ideally you can create these folders anywhere but it's a good practice to have them at the above given path. We will now create key and certificate by running the below command:

sudo openssl req    -x509 -nodes -days 365 -newkey rsa:2048    -keyout /usr/local/etc/ssl/private/self-signed.key    -out /usr/local/etc/ssl/certs/self-signed.crt 
Enter fullscreen mode Exit fullscreen mode

Let's alter our server context from previous tutorial. The updated file is as below.

events {  }   http {     server {         # Listen on port 80 which is the default http port         listen 80;          # Set a permanent redirection from http to https         return 301 https://localhost:443;     } } 
Enter fullscreen mode Exit fullscreen mode

Add another server context inside http context with configuration and locations relating to SSL

 server {        listen       443 ssl;         # location of ssl certificate        ssl_certificate /usr/local/etc/ssl/certs/self-signed.crt;         # location of ssl key        ssl_certificate_key /usr/local/etc/ssl/private/self-signed.key;     } 
Enter fullscreen mode Exit fullscreen mode

Add location context inside the ssl server context

location / {     root   /Users/arjav/Desktop/www;     index  index.html index.htm; } 
Enter fullscreen mode Exit fullscreen mode

This is the whole configuration file:

events {  }  http {     # HTTP server     server {         listen       80;         return 301 https://localhost:443;     }       # HTTPS server     server {        listen       443 ssl;         ssl_certificate /usr/local/etc/ssl/certs/self-signed.crt;        ssl_certificate_key /usr/local/etc/ssl/private/self-signed.key;         location / {            root   /Users/arjav/Desktop/www;            index  index.html index.htm;        }     } } 
Enter fullscreen mode Exit fullscreen mode

As a last step we will need to add the self-signed certificate to the system keychain. Run the below command in your terminal.

sudo security add-trusted-cert    -d -r trustRoot    -k /Library/Keychains/System.keychain /usr/local/etc/ssl/certs/self-signed.crt 
Enter fullscreen mode Exit fullscreen mode

Voila! That's it. In your terminal verify your configuration file by running

nginx -t

and if everything looks okay reload your Nginx server by running

nginx -s reload

Visit https://127.0.0.1. You will still see a red flag or “Not secure” sign in your browser saying that your certificate is invalid, but that it's because not signed by a third-part authority. Rest assured the content is served over secure channels.

In the next chapter we will look at some advanced ssl configuration options for better security, caching and optimisation.

computersciencemacossecuritywebdev
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 2k
  • Popular
  • Answers
  • Author

    ES6 - A beginners guide - Template Literals

    • 0 Answers
  • Author

    Understanding Higher Order Functions in JavaScript.

    • 0 Answers
  • Author

    Build a custom video chat app with Daily and Vue.js

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.