This file contains 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 http2; | |
listen [::]:443 ssl http2; | |
ssl_certificate /usr/local/etc/nginx/ssl/{{host}}.crt; | |
ssl_certificate_key /usr/local/etc/nginx/ssl/{{host}}.key; | |
ssl_ciphers HIGH:!aNULL:!MD5; | |
charset utf-8; | |
server_name {{host}}; |