From d3452fc59b9839846225fd254926c64a9c71f071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Sat, 18 Apr 2020 16:10:56 +0200 Subject: Refactor websites --- modules/private/websites/nassime/production.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'modules/private/websites/nassime/production.nix') diff --git a/modules/private/websites/nassime/production.nix b/modules/private/websites/nassime/production.nix index f9468f9..1179351 100644 --- a/modules/private/websites/nassime/production.nix +++ b/modules/private/websites/nassime/production.nix @@ -3,26 +3,27 @@ let cfg = config.myServices.websites.nassime.production; varDir = "/var/lib/ftp/nassime"; env = config.myEnv.websites.nassime; + domain = "nassime.bouya.org"; in { options.myServices.websites.nassime.production.enable = lib.mkEnableOption "enable Nassime's website"; config = lib.mkIf cfg.enable { - services.webstats.sites = [ { name = "nassime.bouya.org"; } ]; + services.webstats.sites = [ { name = domain; } ]; - security.acme.certs."ftp".extraDomains."nassime.bouya.org" = null; + security.acme.certs."ftp".extraDomains."${domain}" = null; services.websites.env.production.vhostConfs.nassime = { certName = "nassime"; - certMainHost = "nassime.bouya.org"; - hosts = ["nassime.bouya.org" ]; + certMainHost = domain; + hosts = [ domain ]; root = varDir; extraConfig = [ '' - Use Stats nassime.bouya.org + Use Stats ${domain} ServerAdmin ${env.server_admin} - DirectoryIndex index.php index.htm index.html + DirectoryIndex index.htm index.html Options Indexes FollowSymLinks MultiViews Includes AllowOverride None Require all granted -- cgit v1.2.3