想要在 nginx 的 access log 裡面記錄使用者在 HTTPS 連線使用的 TLS protocol 與 cipher。
在「How can I let nginx log the used SSL/TLS protocol and ciphersuite?」這邊有提到方向是 $ssl_protocol
與 $ssl_cipher
(出自「Module ngx_http_ssl_module」內的 Embedded Variables 章節)。
他的方式是在前面就插入 protocol,但我希望前面的欄位保持不變,把 protocol & cipher 放到後面,所以我就加了一個 /etc/nginx/conf.d/combined_ssl.conf
(這邊我用 ondrej 的 PPA,在設定檔裡會撈 /etc/nginx/conf.d/
下的設定,不確定其他的情況如何):
# log_format combined_ssl '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" $ssl_protocol/$ssl_cipher';
然後本來用 combined
的 HTTPS 設定就改成 combined_ssl
。
來放一陣子再來分析,然後想看看要怎麼調整 cipher...