-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
makemake: Add summer.nixos.org site and redirects
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,24 @@ | |
caddy = { | ||
enable = true; | ||
email = "[email protected]"; | ||
virtualHosts."summer.nixos.org" = { | ||
extraConfig = '' | ||
redir /announcements/hiring-event https://nixos.org/blog/announcements/2021/2021-07-20-hiring-event permanent | ||
redir /announcements/summer-of-nix-2021-report https://nixos.org/blog/announcements/2022/2022-02-23-summer-of-nix-2021-report permanent | ||
redir /announcements/applications-closed https://nixos.org/blog/announcements/2021/2021-06-02-applications-closed permanent | ||
redir /announcements/summer-of-nix-2022 https://nixos.org/blog/announcements/2022/2022-04-04-summer-of-nix-2022 permanent | ||
redir /live https://live.nixos.org permanent | ||
redir / https://github.com/ngi-nix/summer-of-nix permanent | ||
redir /blog https://nixos.org/blog/ permanent | ||
redir /announcements https://nixos.org/blog/announcements permanent | ||
redir /videos https://www.youtube.com/playlist?list=PLt4-_lkyRrOMWyp5G-m_d1wtTcbBaOxZk permanent | ||
redir /videos/son2022-public-lecture-series https://www.youtube.com/playlist?list=PLt4-_lkyRrOMWyp5G-m_d1wtTcbBaOxZk permanent | ||
redir /blog/callpackage-a-tool-for-the-lazy https://nix.dev/tutorials/callpackage permanent | ||
redir /blog/the-rise-of-special-project-infra https://nixos.org/blog/stories/2022/the-rise-of-special-project-infra permanent | ||
redir /blog/deploying-simple-jitsi-meet-server https://nixos.org/blog/stories/2022/deploying-simple-jitsi-meet-server permanent | ||
redir /blog/perldivingwithnix https://nixos.org/blog/stories/2021/perldivingwithnix permanent | ||
''; | ||
}; | ||
}; | ||
openssh = { | ||
enable = true; | ||
|