Last active
August 29, 2015 14:04
-
-
Save yurrriq/358095dc6ed5abc5490d to your computer and use it in GitHub Desktop.
SSL on nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 443; | |
ssl on; | |
ssl_certificate /path/to/ssl.crt; | |
ssl_certificate_key /path/to/ssl.key; | |
root /path/to/web/root; | |
server_name server.name; | |
location / { | |
# ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment