2021-04-02 14:18:50 +02:00
|
|
|
{ depot, ... }:
|
2020-07-12 13:27:05 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./base.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
services.nginx.virtualHosts."tvl.fyi" = {
|
|
|
|
serverName = "tvl.fyi";
|
2021-04-02 14:18:50 +02:00
|
|
|
root = depot.web.tvl;
|
2020-07-12 13:27:05 +02:00
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
|
|
|
|
|
|
|
rewrite ^/builds/?$ https://buildkite.com/tvl/depot/ last;
|
|
|
|
|
|
|
|
rewrite ^/monorepo-doc/?$ https://docs.google.com/document/d/1nnyByXcH0F6GOmEezNOUa2RFelpeRpDToBLYD_CtjWE/edit?usp=sharing last;
|
|
|
|
|
2021-05-22 22:55:41 +02:00
|
|
|
rewrite ^/irc/?$ ircs://irc.hackint.org:6697/#tvl last;
|
|
|
|
rewrite ^/webchat/?$ https://webirc.hackint.org/#ircs://irc.hackint.org/#tvl last;
|
2020-07-12 13:27:05 +02:00
|
|
|
|
|
|
|
location ~* \.(webp|woff2)$ {
|
|
|
|
add_header Cache-Control "public, max-age=31536000";
|
|
|
|
}
|
2021-11-30 11:56:10 +01:00
|
|
|
|
|
|
|
location /blog {
|
|
|
|
if ($request_uri ~ ^/(.*)\.html$) {
|
|
|
|
return 302 /$1;
|
|
|
|
}
|
|
|
|
|
|
|
|
try_files $uri $uri.html $uri/ =404;
|
|
|
|
}
|
2021-12-01 21:41:23 +01:00
|
|
|
|
|
|
|
location = /blog {
|
2022-01-29 23:35:28 +01:00
|
|
|
return 302 /#blog;
|
2021-12-01 21:41:23 +01:00
|
|
|
}
|
2022-01-29 22:46:58 +01:00
|
|
|
|
|
|
|
location = /blog/ {
|
2022-01-29 23:35:28 +01:00
|
|
|
return 302 /#blog;
|
2022-01-29 22:46:58 +01:00
|
|
|
}
|
2020-07-12 13:27:05 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|