2023-10-04 10:01:11 -04:00
|
|
|
events
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
http
|
|
|
|
{
|
|
|
|
server {
|
2023-10-05 09:33:42 -04:00
|
|
|
listen 443; # Port d'écoute HTTP par défaut
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
ssl_certificate /etc/ssl/certs/nginx-selfsigned.crt;
|
|
|
|
ssl_certificate_key /etc/ssl/private/nginx-selfsigned.key;
|
2023-10-04 10:01:11 -04:00
|
|
|
|
2023-10-05 09:33:42 -04:00
|
|
|
server_name votre_domaine.com; # Remplacez par votre nom de domaine
|
2023-10-04 10:01:11 -04:00
|
|
|
|
2023-10-05 09:33:42 -04:00
|
|
|
root /var/www/html; # Répertoire racine du site web
|
2023-10-04 10:01:11 -04:00
|
|
|
|
2023-10-05 09:33:42 -04:00
|
|
|
index index.html; # Page d'index par défaut
|
2023-10-04 10:01:11 -04:00
|
|
|
|
2023-10-05 09:33:42 -04:00
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ =404; # Gère les requêtes pour les fichiers statiques
|
|
|
|
}
|
|
|
|
}
|
2023-10-04 10:01:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
daemon off;
|