update X-Claks
This commit is contained in:
parent
6698927b88
commit
1fe48b8a4d
3 changed files with 18 additions and 2 deletions
11
group_vars/all/in_memoriam.yml
Normal file
11
group_vars/all/in_memoriam.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
in_memoriam:
|
||||
- Terry Pratchett
|
||||
- Pierre Bottero
|
||||
- Alan Turing
|
||||
- Ada Lovelace
|
||||
- Evariste Galois
|
||||
- Grace Hopper
|
||||
- John Conway
|
||||
- Leonhard Euler
|
||||
|
|
@ -13,7 +13,7 @@ server {
|
|||
}
|
||||
|
||||
# "A man is not dead while his name is still spoken." -- Going Postal
|
||||
add_header X-Clacks-Overhead "GNU Terry Pratchett";
|
||||
add_header X-Clacks-Overhead "GNU {{ ', '.join(in_memoriam) }}";
|
||||
}
|
||||
|
||||
server {
|
||||
|
@ -35,6 +35,6 @@ server {
|
|||
}
|
||||
|
||||
# "A man is not dead while his name is still spoken." -- Going Postal
|
||||
add_header X-Clacks-Overhead "GNU Terry Pratchett";
|
||||
add_header X-Clacks-Overhead "GNU {{ ', '.join(in_memoriam) }}";
|
||||
}
|
||||
|
||||
|
|
|
@ -11,6 +11,8 @@ server {
|
|||
location / {
|
||||
return 302 https://$host$request_uri;
|
||||
}
|
||||
# "A man is not dead while his name is still spoken." -- Going Postal
|
||||
add_header X-Clacks-Overhead "GNU {{ ', '.join(in_memoriam) }}";
|
||||
}
|
||||
|
||||
server {
|
||||
|
@ -30,5 +32,8 @@ server {
|
|||
root {{ item.folder }};
|
||||
try_files $uri $uri.html 404;
|
||||
}
|
||||
|
||||
# "A man is not dead while his name is still spoken." -- Going Postal
|
||||
add_header X-Clacks-Overhead "GNU {{ ', '.join(in_memoriam) }}";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue