Compare commits
No commits in common. "9e41c3374d92184e15451ae6efbc31ad2f27609e" and "4c77c9fc6757583491eaf71cdfff20c6808f3fa3" have entirely different histories.
9e41c3374d
...
4c77c9fc67
|
@ -16,7 +16,6 @@
|
||||||
./services/vaultwarden.nix
|
./services/vaultwarden.nix
|
||||||
./services/webmail
|
./services/webmail
|
||||||
./services/website
|
./services/website
|
||||||
./services/well-known
|
|
||||||
];
|
];
|
||||||
|
|
||||||
sops.defaultSopsFile = ../../secrets/bekkalokk/bekkalokk.yaml;
|
sops.defaultSopsFile = ../../secrets/bekkalokk/bekkalokk.yaml;
|
||||||
|
|
|
@ -116,6 +116,16 @@ in {
|
||||||
"/drift".return = "301 https://wiki.pvv.ntnu.no/wiki/Drift";
|
"/drift".return = "301 https://wiki.pvv.ntnu.no/wiki/Drift";
|
||||||
"/diverse/abuse.php".return = "301 https://wiki.pvv.ntnu.no/wiki/CERT/Abuse";
|
"/diverse/abuse.php".return = "301 https://wiki.pvv.ntnu.no/wiki/CERT/Abuse";
|
||||||
"/nerds/".return = "301 https://wiki.pvv.ntnu.no/wiki/Nerdepizza";
|
"/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
|
||||||
|
"^~ /.well-known/matrix/" = {
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_set_header Host matrix.pvv.ntnu.no;
|
||||||
|
proxy_pass https://matrix.pvv.ntnu.no/.well-known/matrix/;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
services.nginx.virtualHosts."www.pvv.ntnu.no".locations = {
|
|
||||||
"^~ /.well-known/" = {
|
|
||||||
alias = (toString ./root) + "/";
|
|
||||||
};
|
|
||||||
|
|
||||||
# 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
|
|
||||||
"^~ /.well-known/matrix/" = {
|
|
||||||
extraConfig = ''
|
|
||||||
proxy_set_header Host matrix.pvv.ntnu.no;
|
|
||||||
proxy_pass https://matrix.pvv.ntnu.no/.well-known/matrix/;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
<?xml version="1.0"?>
|
|
||||||
<clientConfig version="1.1">
|
|
||||||
<emailProvider id="pvv.ntnu.no">
|
|
||||||
<domain>pvv.ntnu.no</domain>
|
|
||||||
<domain>pvv.org</domain>
|
|
||||||
|
|
||||||
<displayName>Programvareverkstedet</displayName>
|
|
||||||
|
|
||||||
<incomingServer type="imap">
|
|
||||||
<hostname>imap.pvv.ntnu.no</hostname>
|
|
||||||
<port>993</port>
|
|
||||||
<socketType>SSL</socketType>
|
|
||||||
<username>%EMAILLOCALPART%</username>
|
|
||||||
<authentication>password-cleartext</authentication>
|
|
||||||
</incomingServer>
|
|
||||||
|
|
||||||
<outgoingServer type="smtp">
|
|
||||||
<hostname>smtp.pvv.ntnu.no</hostname>
|
|
||||||
<port>587</port>
|
|
||||||
<socketType>STARTTLS</socketType>
|
|
||||||
<username>%EMAILLOCALPART%</username>
|
|
||||||
<authentication>password-cleartext</authentication>
|
|
||||||
<useGlobalPreferredServer>true</useGlobalPreferredServer>
|
|
||||||
</outgoingServer>
|
|
||||||
|
|
||||||
<documentation url="https://www.pvv.ntnu.no/pvv/Drift/Mail/IMAP_POP3">
|
|
||||||
<descr lang="en">Setup programvareverkstedet email user with IMAP or POP3</descr>
|
|
||||||
<descr lang="nb">Sett opp programvareverkstedet email bruker med IMAP eller POP3</descr>
|
|
||||||
</documentation>
|
|
||||||
</emailProvider>
|
|
||||||
</clientConfig>
|
|
|
@ -1,12 +0,0 @@
|
||||||
Contact: mailto:drift@pvv.ntnu.no
|
|
||||||
Contact: mailto:cert@pvv.ntnu.no
|
|
||||||
# drift@pvv.ntnu.no is read by more people and have a quicker reaction time,
|
|
||||||
# but cert@pvv.ntnu.no can be used for more severe issues.
|
|
||||||
|
|
||||||
Preferred-Languages: no, en
|
|
||||||
|
|
||||||
Expires: 2032-12-31T23:59:59.000Z
|
|
||||||
# This file was last updated 2024-09-14.
|
|
||||||
|
|
||||||
# You can find a wikipage for our security policies at:
|
|
||||||
# https://wiki.pvv.ntnu.no/wiki/CERT
|
|
Loading…
Reference in New Issue