add a redirect for the awesome domain (doxed myself!!!)
This commit is contained in:
parent
03cdd09e6e
commit
775e232887
1 changed files with 12 additions and 7 deletions
|
@ -7,13 +7,18 @@
|
|||
in {
|
||||
services.caddy = {
|
||||
enable = true;
|
||||
virtualHosts."jacekpoz.pl".extraConfig = ''
|
||||
reverse_proxy localhost:${toString port}
|
||||
'';
|
||||
virtualHosts."jpoz.pl".extraConfig = ''
|
||||
redir / https://jacekpoz.pl
|
||||
redir /git https://jacekpoz.pl/posts/git-workflow.html
|
||||
'';
|
||||
virtualHosts = {
|
||||
"jacekpoz.pl".extraConfig = ''
|
||||
reverse_proxy localhost:${toString port}
|
||||
'';
|
||||
"jpoz.pl".extraConfig = ''
|
||||
redir / https://jacekpoz.pl
|
||||
redir /git https://jacekpoz.pl/posts/git-workflow.html
|
||||
'';
|
||||
"jacek.poziem.ski".extraConfig = ''
|
||||
redir https://jacekpoz.pl
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
users.groups.site = {};
|
||||
|
|
Loading…
Reference in a new issue