Add a nginx https example

This commit is contained in:
Prashanth Balasubramanian
2015-07-14 11:26:04 -07:00
parent 9c47e0d20c
commit 5fe8afceac
6 changed files with 254 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
listen 443 ssl;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
ssl_certificate /etc/nginx/ssl/nginx.crt;
ssl_certificate_key /etc/nginx/ssl/nginx.key;
location / {
try_files $uri $uri/ =404;
}
}