blob: a2a087cc339f1c7adff3eaf9d894d9ac92019fe5 (
plain) (
tree)
|
|
{ lib, pkgs, config, ... }:
let
secrets = config.myEnv.websites.isabelle.aten_integration;
app = pkgs.webapps.aten.override { environment = secrets.environment; };
cfg = config.myServices.websites.isabelle.aten_integration;
pcfg = config.services.phpApplication;
in {
options.myServices.websites.isabelle.aten_integration.enable = lib.mkEnableOption "enable Aten's website in integration";
config = lib.mkIf cfg.enable {
services.duplyBackup.profiles.aten_dev.rootDir = app.varDir;
services.phpApplication.apps.aten_dev = {
websiteEnv = "integration";
httpdUser = config.services.httpd.Inte.user;
httpdGroup = config.services.httpd.Inte.group;
httpdWatchFiles = [
config.secrets.fullPaths."webapps/${app.environment}-aten"
];
inherit (app) webRoot varDir;
inherit app;
serviceDeps = [ "postgresql.service" ];
preStartActions = [
"APP_ENV=${app.environment} ./bin/console --env=${app.environment} cache:clear --no-warmup"
];
phpOpenbasedir = [ "/tmp" ];
phpPool = ''
php_admin_value[upload_max_filesize] = 20M
php_admin_value[post_max_size] = 20M
;php_admin_flag[log_errors] = on
pm = ondemand
pm.max_children = 5
pm.process_idle_timeout = 60
env[SYMFONY_DEBUG_MODE] = "yes"
'';
};
secrets.keys = [{
dest = "webapps/${app.environment}-aten";
user = config.services.httpd.Inte.user;
group = config.services.httpd.Inte.group;
permissions = "0400";
text = let
# cf:
# https://secure.php.net/manual/fr/function.parse-url.php
# vendor/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php#parseDatabaseUrlQuery
psql_url = with secrets.postgresql; "pdo-pgsql://${user}:${password}@invalid:${port}/${database}?host=${socket}";
in ''
SetEnv APP_ENV "${app.environment}"
SetEnv APP_SECRET "${secrets.secret}"
SetEnv DATABASE_URL "${psql_url}"
'';
}];
services.websites.env.integration.vhostConfs.aten_dev = {
certName = "integration";
addToCerts = true;
hosts = [ "dev.aten.pro" ];
root = pcfg.webappDirs.aten_dev;
extraConfig = [
''
<FilesMatch "\.php$">
SetHandler "proxy:unix:${pcfg.phpListenPaths.aten_dev}|fcgi://localhost"
</FilesMatch>
Include ${config.secrets.fullPaths."webapps/${app.environment}-aten"}
<Location />
Use LDAPConnect
Require ldap-group cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
</Location>
<Location /backend>
Use LDAPConnect
Require ldap-group cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
</Location>
<Directory ${pcfg.webappDirs.aten_dev}>
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride All
Require all granted
DirectoryIndex index.php
FallbackResource /index.php
</Directory>
''
];
};
};
}
|