blob: 89d69d5f0fe5f686d58df1829289d0a15d428cc5 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
{ lib, pkgs, config, ... }:
let
nextcloud = pkgs.webapps.nextcloud.withApps (a: [
a.apporder a.audioplayer a.bookmarks a.calendar a.carnet a.circles
a.contacts a.cookbook a.deck a.extract a.files_markdown
a.files_readmemd a.flowupload a.gpxedit a.gpxpod a.keeweb a.maps
a.metadata a.music a.notes a.ocsms a.passman a.polls a.spreed
a.social a.tasks
]);
varDir = "/var/lib/nextcloud";
phpFpm = rec {
basedir = builtins.concatStringsSep ":" ([ nextcloud varDir ] ++ nextcloud.apps);
pool = {
"listen.owner" = "wwwrun";
"listen.group" = "wwwrun";
"pm" = "ondemand";
"pm.max_children" = "60";
"pm.process_idle_timeout" = "60";
"php_admin_value[output_buffering]" = "0";
"php_admin_value[max_execution_time]" = "1800";
"php_admin_value[zend_extension]" = "opcache";
#already enabled by default?
#"php_value[opcache.enable]" = "1";
"php_value[opcache.enable_cli]" = "1";
"php_value[opcache.interned_strings_buffer]" = "8";
"php_value[opcache.max_accelerated_files]" = "10000";
"php_value[opcache.memory_consumption]" = "128";
"php_value[opcache.save_comments]" = "1";
"php_value[opcache.revalidate_freq]" = "1";
"php_admin_value[memory_limit]" = "512M";
"php_admin_value[open_basedir]" = "/run/wrappers/bin/sendmail:${basedir}:/proc/meminfo:/dev/urandom:/proc/self/fd:/tmp";
"php_admin_value[session.save_path]" = "${varDir}/phpSessions";
};
};
in {
config = {
services.postgresql.ensureDatabases = [ "nextcloud" ];
services.postgresql.ensureUsers = [
{ name = "nextcloud"; ensurePermissions = { "DATABASE nextcloud" = "ALL PRIVILEGES"; }; }
];
services.websites.env.production.modules = [ "proxy_fcgi" ];
services.websites.env.production.vhostConfs.cloud = {
certName = "quatresaisons";
addToCerts = true;
hosts = ["nextcloud.4c.salle-s.org" ];
root = nextcloud;
extraConfig =
[
''
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
<Directory ${nextcloud}>
AcceptPathInfo On
DirectoryIndex index.php
Options FollowSymlinks
Require all granted
AllowOverride all
<IfModule mod_headers.c>
Header always set Strict-Transport-Security "max-age=15552000; includeSubDomains; preload"
</IfModule>
<FilesMatch "\.php$">
CGIPassAuth on
SetHandler "proxy:unix:${config.services.phpfpm.pools.nextcloud.socket}|fcgi://localhost"
</FilesMatch>
</Directory>
''
];
};
services.websites.env.production.vhostConfs.cloud_wait = let
content = pkgs.writeText "contenu" ''
nextcloud est un service qui a besoin de pérennité du nom
"nextcloud.salle-s.org", on va peut-etre y arriver, c'est une
question de jours, voir le message informatique.internet:8017
'';
in {
certName = "quatresaisons";
addToCerts = true;
hosts = ["nextcloud.salle-s.org" ];
root = content;
extraConfig =
[
''
Alias / ${content}
''
];
};
users.users.root.packages = let
occ = pkgs.writeScriptBin "nextcloud-occ" ''
#! ${pkgs.stdenv.shell}
cd ${nextcloud}
NEXTCLOUD_CONFIG_DIR="${nextcloud}/config" \
exec \
sudo -E -u wwwrun ${pkgs.php74}/bin/php \
-c ${pkgs.php74}/etc/php.ini \
occ $*
'';
in [ occ ];
system.activationScripts.nextcloud = {
deps = [ "users" ];
text = let
confs = lib.attrsets.mapAttrs (n: v: pkgs.writeText "${n}.json" (builtins.toJSON v)) nextcloud.otherConfig;
in
''
install -m 0755 -o wwwrun -g wwwrun -d ${varDir}
install -m 0755 -o wwwrun -g wwwrun -d ${varDir}/config
install -m 0750 -o wwwrun -g wwwrun -d ${varDir}/phpSessions
${builtins.concatStringsSep "\n" (lib.attrsets.mapAttrsToList (n: v:
"install -D -m 0644 -o wwwrun -g wwwrun -T ${v} ${varDir}/config/${n}.json"
) confs)}
'';
};
services.phpfpm.pools.nextcloud = {
user = "wwwrun";
group = "wwwrun";
settings = phpFpm.pool;
phpPackage = pkgs.php74.withExtensions({ enabled, all }: enabled ++ [ all.redis all.apcu all.opcache all.imagick ]);
};
services.cron = {
enable = true;
systemCronJobs = let
script = pkgs.writeScriptBin "nextcloud-cron" ''
#! ${pkgs.stdenv.shell}
export LOCALE_ARCHIVE=/run/current-system/sw/lib/locale/locale-archive
export PATH=/run/wrappers/bin:$PATH
${pkgs.php74}/bin/php -d memory_limit=512M -f ${nextcloud}/cron.php
'';
in [
''
*/15 * * * * wwwrun ${script}/bin/nextcloud-cron
''
];
};
};
}
|