NixOS-Config/modules/system/services/server/social/lemmy/nginx/default.nix

8 lines
136 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-09 03:36:08 -04:00
{
services.nginx.virtualHosts."lemmy.${config.domains.jim1}" = {
enableACME = true;
forceSSL = true;
};
}