Les directives ssl
ont été remplacées par des directives listen
(7bdbc67760dc0eb0476e4dcb3eb8389494190f2d) à l'aide de la commande sed -i -e '/ssl on;$/d' -e 's/\([[:space:]]\+listen 443\);/\1 ssl;/' /etc/nginx/sites-available/*
.
J'ai aussi corrigé ces warnings en supprimant les entrées dupliquées (394b1487a4b957ee026eba014d1ce9bce5abc4ac):
nginx: [warn] conflicting server name "pactelogiciellibre.fr" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "pactelogiciellibre.org" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "*.pactelogiciellibre.fr" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "*.pactelogiciellibre.org" on 0.0.0.0:80, ignored
nginx: [warn] conflicting server name "pactelogiciellibre.fr" on 0.0.0.0:443, ignored
nginx: [warn] conflicting server name "pactelogiciellibre.org" on 0.0.0.0:443, ignored
nginx: [warn] conflicting server name "*.pactelogiciellibre.fr" on 0.0.0.0:443, ignored
nginx: [warn] conflicting server name "*.pactelogiciellibre.org" on 0.0.0.0:443, ignored
Après ces deux modifications, les warnings ont bien disparu et le service nginx a été redémarré:
# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
# systemctl restart nginx.service