mirror of https://gitlab.crans.org/nounous/nixos
fix regex
parent
e5f99f76b6
commit
7b29b8679c
|
|
@ -115,7 +115,7 @@ let
|
||||||
"bots" = [
|
"bots" = [
|
||||||
{
|
{
|
||||||
name = "allow-public";
|
name = "allow-public";
|
||||||
path_regex = "^/public/*";
|
path_regex = "^/[a-zA-Z0-9_-]*/public/.*";
|
||||||
action = "ALLOW";
|
action = "ALLOW";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
@ -201,14 +201,14 @@ in
|
||||||
target = "172.16.10.104";
|
target = "172.16.10.104";
|
||||||
};
|
};
|
||||||
"perso" = {
|
"perso" = {
|
||||||
anubisConfig = "${anubisChallenge}";
|
anubisConfig = "${anubisPerso}";
|
||||||
target = "172.16.10.31";
|
target = "172.16.10.31";
|
||||||
serverAliases = [
|
serverAliases = [
|
||||||
"clubs"
|
"clubs"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"wiki" = {
|
"wiki" = {
|
||||||
anubisConfig = "${anubisPerso}";
|
anubisConfig = "${anubisChallenge}";
|
||||||
target = "[fd00::10:0:ff:fe01:6110]"; # l'ipv4 marche pas
|
target = "[fd00::10:0:ff:fe01:6110]"; # l'ipv4 marche pas
|
||||||
serverAliases = [
|
serverAliases = [
|
||||||
"wikipedia"
|
"wikipedia"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue