18 lines
270 B
Django/Jinja
18 lines
270 B
Django/Jinja
server {
|
|
{% include './templates/header.conf.j2' %}
|
|
root /srv/www-data/r.mateu.be/;
|
|
|
|
location / {
|
|
autoindex on;
|
|
}
|
|
|
|
location ~ ^/~mortal/(.*)$ {
|
|
return 301 https://r.mateu.be/$1;
|
|
}
|
|
|
|
location ~ ^/~clement\.veret/(.*)$ {
|
|
return 301 https://r.mateu.be/$1;
|
|
}
|
|
}
|
|
|