mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 21:57:00 +01:00
9 lines
185 B
Nix
9 lines
185 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
{
|
||
|
|
services.nginx.virtualHosts."osteopathie.froidmont.org" = {
|
||
|
|
enableACME = true;
|
||
|
|
forceSSL = true;
|
||
|
|
root = "/nix/var/data/website-marie";
|
||
|
|
};
|
||
|
|
}
|