2024-03-28 10:52:59 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
|
|
|
let
|
|
|
|
format = pkgs.formats.php { };
|
|
|
|
cfg = config.services.pvv-nettsiden;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
./fetch-gallery.nix
|
|
|
|
];
|
|
|
|
|
2024-04-08 23:07:41 +02:00
|
|
|
sops.secrets = lib.genAttrs [
|
|
|
|
"nettsiden/door_secret"
|
|
|
|
"nettsiden/mysql_password"
|
|
|
|
"nettsiden/simplesamlphp/admin_password"
|
|
|
|
"nettsiden/simplesamlphp/cookie_salt"
|
|
|
|
] (_: {
|
|
|
|
owner = config.services.phpfpm.pools.pvv-nettsiden.user;
|
|
|
|
group = config.services.phpfpm.pools.pvv-nettsiden.group;
|
|
|
|
restartUnits = [ "phpfpm-pvv-nettsiden.service" ];
|
|
|
|
});
|
|
|
|
|
2024-04-14 17:06:01 +02:00
|
|
|
services.idp.sp-remote-metadata = [
|
|
|
|
"https://www.pvv.ntnu.no/simplesaml/"
|
|
|
|
"https://pvv.ntnu.no/simplesaml/"
|
2024-08-04 02:30:25 +02:00
|
|
|
"https://www.pvv.org/simplesaml/"
|
|
|
|
"https://pvv.org/simplesaml/"
|
2024-04-14 17:06:01 +02:00
|
|
|
];
|
2024-03-28 10:52:59 +01:00
|
|
|
|
|
|
|
services.pvv-nettsiden = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
package = pkgs.pvv-nettsiden.override {
|
|
|
|
extra_files = {
|
|
|
|
"${pkgs.pvv-nettsiden.passthru.simplesamlphpPath}/metadata/saml20-idp-remote.php" = pkgs.writeText "pvv-nettsiden-saml20-idp-remote.php" (import ../idp-simplesamlphp/metadata.php.nix);
|
|
|
|
"${pkgs.pvv-nettsiden.passthru.simplesamlphpPath}/config/authsources.php" = pkgs.writeText "pvv-nettsiden-authsources.php" ''
|
|
|
|
<?php
|
|
|
|
$config = array(
|
2024-04-08 23:07:41 +02:00
|
|
|
'admin' => array(
|
|
|
|
'core:AdminPassword'
|
|
|
|
),
|
2024-03-28 10:52:59 +01:00
|
|
|
'default-sp' => array(
|
|
|
|
'saml:SP',
|
2024-04-08 23:07:41 +02:00
|
|
|
'entityID' => 'https://${cfg.domainName}/simplesaml/',
|
2024-04-10 23:31:04 +02:00
|
|
|
'idp' => 'https://idp.pvv.ntnu.no/',
|
2024-03-28 10:52:59 +01:00
|
|
|
),
|
|
|
|
);
|
2024-08-04 02:30:25 +02:00
|
|
|
'';
|
2024-03-28 10:52:59 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-10 23:31:04 +02:00
|
|
|
domainName = "www.pvv.ntnu.no";
|
2024-03-28 10:52:59 +01:00
|
|
|
|
2024-04-08 23:07:41 +02:00
|
|
|
settings = let
|
|
|
|
includeFromSops = path: format.lib.mkRaw "file_get_contents('${config.sops.secrets."nettsiden/${path}".path}')";
|
|
|
|
in {
|
|
|
|
DOOR_SECRET = includeFromSops "door_secret";
|
2024-03-28 10:52:59 +01:00
|
|
|
|
|
|
|
DB = {
|
2024-04-08 23:07:41 +02:00
|
|
|
DSN = "mysql:dbname=www-data_nettside;host=mysql.pvv.ntnu.no";
|
|
|
|
USER = "www-data_nettsi";
|
|
|
|
PASS = includeFromSops "mysql_password";
|
2024-03-28 10:52:59 +01:00
|
|
|
};
|
|
|
|
|
2024-04-08 23:07:41 +02:00
|
|
|
# TODO: set up postgres session for simplesamlphp
|
2024-03-28 10:52:59 +01:00
|
|
|
SAML = {
|
2024-04-08 23:07:41 +02:00
|
|
|
COOKIE_SALT = includeFromSops "simplesamlphp/cookie_salt";
|
2024-03-28 10:52:59 +01:00
|
|
|
COOKIE_SECURE = true;
|
|
|
|
ADMIN_NAME = "PVV Drift";
|
|
|
|
ADMIN_EMAIL = "drift@pvv.ntnu.no";
|
2024-04-08 23:07:41 +02:00
|
|
|
ADMIN_PASSWORD = includeFromSops "simplesamlphp/admin_password";
|
2024-03-28 10:52:59 +01:00
|
|
|
TRUSTED_DOMAINS = [ cfg.domainName ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.phpfpm.pools."pvv-nettsiden".settings = {
|
|
|
|
# "php_admin_value[error_log]" = "stderr";
|
|
|
|
"php_admin_flag[log_errors]" = true;
|
|
|
|
"catch_workers_output" = true;
|
|
|
|
};
|
2024-04-11 00:29:55 +02:00
|
|
|
|
|
|
|
services.nginx.virtualHosts.${cfg.domainName} = {
|
|
|
|
serverAliases = [
|
|
|
|
"pvv.ntnu.no"
|
2024-04-11 05:31:23 +02:00
|
|
|
"www.pvv.org"
|
2024-04-11 00:29:55 +02:00
|
|
|
"pvv.org"
|
|
|
|
];
|
|
|
|
|
|
|
|
locations = {
|
|
|
|
# Proxy home directories
|
2024-04-11 13:21:11 +02:00
|
|
|
"^~ /~" = {
|
2024-04-11 00:29:55 +02:00
|
|
|
extraConfig = ''
|
|
|
|
proxy_redirect off;
|
|
|
|
proxy_pass https://tom.pvv.ntnu.no;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# Redirect the old webmail/wiki paths from spikkjeposche
|
2024-04-11 13:21:11 +02:00
|
|
|
"^~ /webmail".return = "301 https://webmail.pvv.ntnu.no";
|
2024-04-11 00:29:55 +02:00
|
|
|
"~ /pvv/([^\\n\\r]*)".return = "301 https://wiki.pvv.ntnu.no/wiki/$1";
|
|
|
|
"= /pvv".return = "301 https://wiki.pvv.ntnu.no/";
|
|
|
|
|
|
|
|
# Redirect old wiki entries
|
|
|
|
"/disk".return = "301 https://wiki.pvv.ntnu.no/wiki/Diskkjøp";
|
|
|
|
"/dok/boker.php".return = "301 https://wiki.pvv.ntnu.no/wiki/Bokhyllen";
|
|
|
|
"/styret/lover/".return = "301 https://wiki.pvv.ntnu.no/wiki/Lover";
|
|
|
|
"/styret/".return = "301 https://wiki.pvv.ntnu.no/wiki/Styret";
|
|
|
|
"/info/".return = "301 https://wiki.pvv.ntnu.no/wiki/";
|
|
|
|
"/info/maskinpark/".return = "301 https://wiki.pvv.ntnu.no/wiki/Maskiner";
|
|
|
|
"/medlemssider/meldinn.php".return = "301 https://wiki.pvv.ntnu.no/wiki/Medlemskontingent";
|
|
|
|
"/diverse/medlems-sider.php".return = "301 https://wiki.pvv.ntnu.no/wiki/Medlemssider";
|
|
|
|
"/cert/".return = "301 https://wiki.pvv.ntnu.no/wiki/CERT";
|
|
|
|
"/drift".return = "301 https://wiki.pvv.ntnu.no/wiki/Drift";
|
|
|
|
"/diverse/abuse.php".return = "301 https://wiki.pvv.ntnu.no/wiki/CERT/Abuse";
|
|
|
|
"/nerds/".return = "301 https://wiki.pvv.ntnu.no/wiki/Nerdepizza";
|
|
|
|
|
|
|
|
# Proxy the matrix well-known files
|
|
|
|
# Host has be set before proxy_pass
|
|
|
|
# The header must be set so nginx on the other side routes it to the right place
|
2024-04-11 13:21:11 +02:00
|
|
|
"^~ /.well-known/matrix/" = {
|
2024-04-11 00:29:55 +02:00
|
|
|
extraConfig = ''
|
|
|
|
proxy_set_header Host matrix.pvv.ntnu.no;
|
|
|
|
proxy_pass https://matrix.pvv.ntnu.no/.well-known/matrix/;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-03-28 10:52:59 +01:00
|
|
|
}
|