blob: 2ba30a138f836de220a9c14d4ad715baf32e7e5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{ lib, pkgs, config, myconfig, ... }:
let
cfg = config.services.myWebsites.Immae;
varDir = "/var/lib/ftp/immae";
env = myconfig.env.websites.immae;
in {
options.services.myWebsites.Immae = {
production = {
enable = lib.mkEnableOption "enable Immae's website";
};
};
config = lib.mkIf cfg.production.enable {
services.webstats.sites = [ { name = "www.immae.eu"; } ];
services.myPhpfpm.poolConfigs.immae = ''
listen = /run/phpfpm/immae.sock
user = wwwrun
group = wwwrun
listen.owner = wwwrun
listen.group = wwwrun
pm = ondemand
pm.max_children = 5
pm.process_idle_timeout = 60
php_admin_value[open_basedir] = "${varDir}:/tmp"
'';
services.websites.production.modules = [ "proxy_fcgi" ];
services.websites.production.vhostConfs.immae = {
certName = "eldiron";
addToCerts = true;
hosts = [ "www.immae.eu" ];
root = varDir;
extraConfig = [
''
Use Stats www.immae.eu
<FilesMatch "\.php$">
SetHandler "proxy:unix:/run/phpfpm/immae.sock|fcgi://localhost"
</FilesMatch>
<Directory ${varDir}>
DirectoryIndex index.php index.htm index.html
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride All
Require all granted
</Directory>
<Location /blog_old/>
Use LDAPConnect
Require ldap-group cn=blog,cn=immae.eu,ou=services,dc=immae,dc=eu
</Location>
''
];
};
services.websites.production.vhostConfs.bouya = {
certName = "eldiron";
addToCerts = true;
hosts = [ "bouya.org" "www.bouya.org" ];
root = null;
extraConfig = [ ''
RedirectMatch 301 ^/((?!\.well-known.*$).*)$ https://www.normalesup.org/~bouya/
'' ];
};
};
}
|