Skip to content

Commit

Permalink
Update nginx.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeMBourgeois authored May 27, 2024
1 parent ac0b7ef commit a625c8c
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions config/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,4 @@ http {
}
}

server {
listen 443 ssl;
root /usr/share/nginx/html;

ssl_certificate /etc/nginx/ssl/nginx.crt; # Chemin vers votre certificat SSL
ssl_certificate_key /etc/nginx/ssl/nginx.key; # Chemin vers votre clé SSL
ssl_protocols TLSv1.2 TLSv1.3; # Protocole SSL à utiliser
ssl_ciphers HIGH:!aNULL:!MD5;

gzip on;
gzip_types text/css application/javascript application/json image/svg+xml;
gzip_comp_level 9;
etag on;

location / {
try_files $uri $uri/ /index.html;
}
}
}

0 comments on commit a625c8c

Please sign in to comment.