continuer le fichier nginx.config

This commit is contained in:
0x00000000
2025-06-14 20:51:14 +02:00
parent 08f0faa7cf
commit 7c60e64c67
2 changed files with 18 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
#SSL/TLS Configuration
listen 443 ssl;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_certificate /etc/nginx/ssl/inception.crt;
ssl_certificate_key /etc/nginx/ssl/inception.key;
#root and index and server_name
root /var/www/html;
server_name localhost;
index index.php index.html index.htm;
}