Split in prod and test sites

This commit is contained in:
Lucas
2025-09-24 10:13:06 +00:00
parent 38bbe88d33
commit ad6c57857b
396 changed files with 40286 additions and 46 deletions

View File

@@ -1,4 +1,21 @@
:80 {
root * /srv
file_server
}
@prod host veloboomboom.internantes.ovh
handle @prod {
root * /srv/prod
file_server
}
@test host veloboomboom.lucasroyer.fr
handle @test {
basic_auth {
testuser $2a$14$hNv5hbag695p/jcyB.7qeOoCvqxQ0L6zyBptfHU15qnTtmivfXAea
}
root * /srv/test
file_server
}
# fallback
handle {
respond "Not Found" 404
}
}