You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Da ich dies schon mehrmals im Geschäft machen musste, war mir der Ablauf schon bekannt.
54
+
Da ich dies schon mehrmals machen musste, war mir der Ablauf schon bekannt.
54
55
55
56
Als ich dies originell aufgesetzt habe, habe ich die Ciphers nicht beachtet. Ich habe jedoch bei dem [Vergleich mit anderen](vergleich.md) gemerkt, dass dies sinnvoll wäre.
56
-
Deshalb habe ich `ssl_ciphers TLS_AES_256_GCM_SHA384;` in der config spezifiziert.
57
+
Deshalb habe ich `ssl_ciphers TLS_AES_256_GCM_SHA384;` in der config spezifiziert.
58
+
59
+
**ACHTUNG!** Die cipher `TLS_AES_256_GCM_SHA384` hat nicht funktioniert, weil es von nginx nicht erkannt wird. Es ist aber eine valide cipher, dies habe ich wie folgt geprüft:
60
+
61
+

62
+
63
+
Ich versuchte, TLS 1.3 zu erzwingen, dies hat aber nichts genützt.
64
+
65
+
Ich habe schlussendlich gelöst, indem ich auf die empfohlenen Ciphers von Mozilla gewechselt habe:
|<https://www.sephley.com>| 1.2 - 1.3|[T (A wenn es trusted wäre)](https://www.ssllabs.com/ssltest/analyze.html?d=www.sephley.com)|
17
+
|<https://www.sephley.com>(ohne spezifizierte ciphers)| 1.2 - 1.3|[T (A wenn es trusted wäre)](https://www.ssllabs.com/ssltest/analyze.html?d=www.sephley.com)|
18
+
|<https://www.sephley.com>(mit spezifizierten ciphers)| 1.2 - 1.3|[T (A wenn es trusted wäre)](https://www.ssllabs.com/ssltest/analyze.html?d=www.sephley.com)|
18
19
19
20
## Reflexion
20
21
Was bei meinen Webseiten zum A anstatt A+ geführt hat sind die Ciphers.
21
-
Beispielsweise ist mir aufgefallen, das mein selbst-signiertes Zertifikat <https://www.sephley.com> schwächere Ciphers verwendet als <https://olat.bbw.ch>.
22
+
Beispielsweise ist mir aufgefallen, das mein selbst-signiertes Zertifikat <https://www.sephley.com> schwächere Ciphers unterstützt als <https://olat.bbw.ch>.
22
23
23
24
><https://olat.bbw.ch>
24
25
@@ -31,5 +32,12 @@ Beispielsweise ist mir aufgefallen, das mein selbst-signiertes Zertifikat <https
31
32
Bei der Erstellung des private keys habe ich nicht darauf geachtet, welche ciphers ich verwende.
32
33
Falsch, das spezifiziert man nicht bei der Erstellung des private keys sondern bei dem Webserver. in meinem Fall musste ich also meine Nginx config anpassen:
0 commit comments