diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 01:35:06 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 02:11:48 +0200 |
commit | 1a64deeb894dc95e2645a75771732c6cc53a79ad (patch) | |
tree | 1b9df4838f894577a09b9b260151756272efeb53 /modules/private/websites/nath | |
parent | fa25ffd4583cc362075cd5e1b4130f33306103f0 (diff) | |
download | Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.gz Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.zst Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.zip |
Squash changes containing private information
There were a lot of changes since the previous commit, but a lot of them
contained personnal information about users. All thos changes got
stashed into a single commit (history is kept in a different place) and
private information was moved in a separate private repository
Diffstat (limited to 'modules/private/websites/nath')
-rw-r--r-- | modules/private/websites/nath/villon.nix | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/modules/private/websites/nath/villon.nix b/modules/private/websites/nath/villon.nix deleted file mode 100644 index 57a1df5..0000000 --- a/modules/private/websites/nath/villon.nix +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | { lib, pkgs, config, ... }: | ||
2 | let | ||
3 | cfg = config.myServices.websites.nath.villon; | ||
4 | varDir = "/var/lib/ftp/nath"; | ||
5 | env = config.myEnv.websites.nath; | ||
6 | domain = "sntvillon.immae.eu"; | ||
7 | apacheUser = config.services.httpd.Prod.user; | ||
8 | apacheGroup = config.services.httpd.Prod.group; | ||
9 | in { | ||
10 | options.myServices.websites.nath.villon.enable = lib.mkEnableOption "enable Nath's website"; | ||
11 | |||
12 | config = lib.mkIf cfg.enable { | ||
13 | services.webstats.sites = [ { name = domain; } ]; | ||
14 | |||
15 | system.activationScripts.nath_villon = { | ||
16 | deps = [ "users" ]; | ||
17 | text = '' | ||
18 | install -m 0755 -o ${apacheUser} -g ${apacheGroup} -d ${varDir} | ||
19 | ''; | ||
20 | }; | ||
21 | security.acme.certs."ftp".extraDomains."${domain}" = null; | ||
22 | |||
23 | services.websites.env.production.vhostConfs.nath_villon = { | ||
24 | certName = "nath"; | ||
25 | certMainHost = domain; | ||
26 | hosts = [ domain ]; | ||
27 | root = varDir; | ||
28 | extraConfig = [ | ||
29 | '' | ||
30 | Use Stats ${domain} | ||
31 | |||
32 | <Directory ${varDir}> | ||
33 | DirectoryIndex index.htm index.html | ||
34 | Options Indexes FollowSymLinks MultiViews Includes | ||
35 | AllowOverride None | ||
36 | Require all granted | ||
37 | </Directory> | ||
38 | '' | ||
39 | ]; | ||
40 | }; | ||
41 | }; | ||
42 | } | ||