2024-12-18 09:40:11 +03:00
|
|
|
{ lib, ... }:
|
2024-12-02 21:12:45 +03:00
|
|
|
{
|
2024-12-18 09:40:11 +03:00
|
|
|
"office.voronind.com" = {
|
|
|
|
locations."/".extraConfig = lib.mkForce ''
|
|
|
|
add_header X-Forwarded-Proto https;
|
|
|
|
proxy_pass http://127.0.0.1:8000$request_uri;
|
|
|
|
'';
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
extraConfig = ''
|
|
|
|
listen 443 ssl;
|
2024-12-02 21:12:45 +03:00
|
|
|
|
2024-12-18 09:40:11 +03:00
|
|
|
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;
|
|
|
|
'';
|
|
|
|
};
|
2024-12-02 21:12:45 +03:00
|
|
|
}
|