add static site

This commit is contained in:
2026-09-02 09:52:50 +02:00
parent a9f4c726f9
commit f4ad284e26
6 changed files with 215 additions and 0 deletions
@@ -0,0 +1,11 @@
server {
listen 80;
server_name static.oriabenk.42.fr;
root /var/www/static;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}