blob: b0ee5535087c9f826d6162b34c969cc9c341ab3c (
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
|
{ env, mantisbt_2, mantisbt_2-plugins, config }:
rec {
keys."webapps/tools-mantisbt" = {
user = apache.user;
group = apache.group;
permissions = "0400";
text = ''
<?php
$g_admin_checks = OFF;
$g_reauthentication = OFF;
$g_reauthentication_expiry = 604800;
$g_path = 'https://git.immae.eu/mantisbt/';
$g_hostname = '${env.postgresql.socket}';
$g_db_username = '${env.postgresql.user}';
$g_db_password = '${env.postgresql.password}';
$g_database_name = '${env.postgresql.database}';
$g_db_type = 'pgsql';
$g_crypto_master_salt = '${env.master_salt}';
$g_allow_signup = OFF;
$g_allow_anonymous_login = ON;
$g_anonymous_account = 'anonymous';
$g_phpMailer_method = PHPMAILER_METHOD_SENDMAIL;
$g_smtp_host = 'localhost';
$g_smtp_username = ''';
$g_smtp_password = ''';
$g_webmaster_email = 'mantisbt@tools.immae.eu';
$g_from_email = 'mantisbt@tools.immae.eu';
$g_return_path_email = 'mantisbt@tools.immae.eu';
$g_from_name = 'Mantis Bug Tracker at git.immae.eu';
$g_email_receive_own = ON;
# --- LDAP ---
$g_login_method = LDAP;
$g_ldap_protocol_version = 3;
$g_ldap_server = 'ldaps://${env.ldap.host}:636';
$g_ldap_use_starttls = OFF;
$g_ldap_root_dn = 'ou=users,${env.ldap.base}';
$g_ldap_bind_dn = '${env.ldap.dn}';
$g_ldap_bind_passwd = '${env.ldap.password}';
$g_use_ldap_email = ON;
$g_use_ldap_realname = ON;
$g_ldap_uid_field = 'uid';
$g_ldap_realname_field = 'cn';
$g_ldap_organization = '${env.ldap.filter}';
'';
};
webRoot = (mantisbt_2.override { mantis_config =
config.secrets.fullPaths."webapps/tools-mantisbt"; }).withPlugins (p: [p.slack p.source-integration ]);
apache = rec {
user = "wwwrun";
group = "wwwrun";
modules = [ "proxy_fcgi" ];
root = webRoot;
vhostConf = socket: ''
Alias /mantisbt "${root}"
<Directory "${root}">
DirectoryIndex index.php
<FilesMatch "\.php$">
SetHandler "proxy:unix:${socket}|fcgi://localhost"
</FilesMatch>
AllowOverride All
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
Options FollowSymlinks
Require all granted
</Directory>
<Directory "${root}/admin">
#Reenable during upgrade
Require all denied
</Directory>
'';
};
phpFpm = rec {
serviceDeps = [ "postgresql.service" "openldap.service" ];
basedir = builtins.concatStringsSep ":" (
[ webRoot config.secrets.fullPaths."webapps/tools-mantisbt" ]
++ webRoot.plugins);
pool = {
"listen.owner" = apache.user;
"listen.group" = apache.group;
"pm" = "ondemand";
"pm.max_children" = "60";
"pm.process_idle_timeout" = "60";
"php_admin_value[upload_max_filesize]" = "5000000";
"php_admin_value[open_basedir]" = "${basedir}:/tmp";
"php_admin_value[session.save_handler]" = "redis";
"php_admin_value[session.save_path]" = "'unix:///run/redis-php-sessions/redis.sock?persistent=1&prefix=Tools:MantisBT:'";
};
};
}
|