blob: 44306c75bf645ea5c942927af15815202e6bec07 (
plain) (
tree)
|
|
{ ... }:
{
imports = [
./nginx.nix
];
config = {
services.nginx.virtualHosts."sterni.lv" = {
enableACME = true;
forceSSL = true;
# TODO(sterni): take website from store, replace /tmp with a simple LRU thing
root = toString /srv/http;
};
};
}
|