Generate a Let's Encrypt certificate for IPFS

This commit is contained in:
Greg Karékinian
2017-03-20 13:26:03 +00:00
parent f1205f9424
commit d52ef53ac8
4 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
server {
listen 80; # For Let's Encrypt
<% if File.exist?(@ssl_cert) && File.exist?(@ssl_key) -%>
listen 443 ssl spdy;
<% end -%>
server_name <%= @server_name %>;
# Used by Let's Encrypt (certbot in webroot mode)
location /.well-known {
root "<%= @root_directory %>";
}
location / {
return 200 'Nothing to see here';
add_header Content-Type text/plain;
}
<% if File.exist?(@ssl_cert) && File.exist?(@ssl_key) -%>
ssl_certificate <%= @ssl_cert %>;
ssl_certificate_key <%= @ssl_key %>;
<% end -%>
}