You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
717 B

# Directive globale
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location /containers/kyllianchabanon-portfolio/ {
root /usr/share/nginx/html; # Assure-toi que ce répertoire contient index.html
try_files $uri $uri/ /containers/kyllianchabanon-portfolio/index.html; # Redirige vers index.html dans le sous-dossier
}
location ~* \.(css|js|json|jpg|jpeg|png|gif|ico)$ {
root /usr/share/nginx/html;
try_files $uri =404; # Sert les fichiers statiques correctement
}
}
}