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