22 lines
525 B
Nix
22 lines
525 B
Nix
|
{
|
||
|
lib,
|
||
|
util,
|
||
|
...
|
||
|
}: {
|
||
|
"office.voronind.com" = {
|
||
|
locations."/".extraConfig = lib.mkForce (util.trimTabs ''
|
||
|
add_header X-Forwarded-Proto https;
|
||
|
proxy_pass http://127.0.0.1:8000$request_uri;
|
||
|
'');
|
||
|
|
||
|
extraConfig = util.trimTabs ''
|
||
|
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;
|
||
|
'';
|
||
|
};
|
||
|
}
|