13 lines
360 B
Nix
13 lines
360 B
Nix
{ ... }:
|
|
{
|
|
"paste.voronind.com" = {
|
|
extraConfig = ''
|
|
listen 443 ssl;
|
|
ssl_certificate /etc/letsencrypt/live/voronind.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/voronind.com/privkey.pem;
|
|
include /etc/letsencrypt/conf/options-ssl-nginx.conf;
|
|
ssl_dhparam /etc/letsencrypt/conf/ssl-dhparams.pem;
|
|
'';
|
|
};
|
|
}
|