Phpmyadmin et https
Résolu/Fermé
artemis0
Messages postés
903
Date d'inscription
vendredi 3 janvier 2014
Statut
Membre
Dernière intervention
28 juillet 2018
-
24 déc. 2017 à 14:01
artemis0 Messages postés 903 Date d'inscription vendredi 3 janvier 2014 Statut Membre Dernière intervention 28 juillet 2018 - 25 déc. 2017 à 20:22
artemis0 Messages postés 903 Date d'inscription vendredi 3 janvier 2014 Statut Membre Dernière intervention 28 juillet 2018 - 25 déc. 2017 à 20:22
A voir également:
- Phpmyadmin https
- Https //my.canal box.africa ✓ - Forum Box et Streaming vidéo
- Https //id.sonyentertainmentnetwork.com/id/management/ ✓ - Forum PS4
- Changer mot de passe WIFI - Forum WiFi
- Changer mot de passe canalbox africa ✓ - Forum Box et Streaming vidéo
- My Canal Africa changer le mot de passe - Forum Box et Streaming vidéo
1 réponse
Exileur
Messages postés
1475
Date d'inscription
mercredi 31 août 2011
Statut
Membre
Dernière intervention
16 décembre 2022
150
25 déc. 2017 à 10:11
25 déc. 2017 à 10:11
Salut,
Tu fais une redirection sur ton VH mais celui ci n'a aucune configuration mis à part les certs...
QQ chose comme ça devrait fonctionner.
Joyeux Noël, des bisous.
Tu fais une redirection sur ton VH mais celui ci n'a aucune configuration mis à part les certs...
QQ chose comme ça devrait fonctionner.
server {
listen 80;
server_name mondomaine.fr;
return 301 https://$server_name$request_uri; #Redirection
}
server {
listen 443 ssl http2;
server_name mondomaine.fr;
root /var/www/html;
index index.html index.htm index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
ssl_certificate /etc/letsencrypt/live/mondomaine.fr/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mondomaine.fr/privkey.pem;
ssl_dhparam /etc/nginx/sites-available/dh.pem;
ssl_ecdh_curve sect571r1:secp521r1:brainpoolP512r1:secp384r1;
ssl_ciphers EECDH+AESGCM:EECDH+CHACHA20:EECDH+AES;
ssl_prefer_server_ciphers on;
ssl_trusted_certificate /etc/letsencrypt/live/mondomaine.fr/chain.pem;
ssl_stapling on;
ssl_stapling_verify on;
}
Joyeux Noël, des bisous.
25 déc. 2017 à 10:31
25 déc. 2017 à 11:19
25 déc. 2017 à 20:22