Want more timely Centmin Mod News Updates?
Become a Member

Nginx Anyone here tried using "Session Tickets & Key" on Nginx?

Discussion in 'Nginx, PHP-FPM & MariaDB MySQL' started by rdan, Feb 26, 2022.

  1. rdan

    rdan Well-Known Member

    5,452
    1,418
    113
    May 25, 2014
    Ratings:
    +2,212
    Local Time:
    3:50 AM
    Mainline
    10.2
  2. eva2000

    eva2000 Administrator Staff Member

    58,905
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    5:50 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    Centmin Mod uses SSL session caching by default so should suffice
    Code (Text):
    cat /usr/local/nginx/conf/ssl_include.conf
    ssl_session_cache      shared:SSL:10m;
    ssl_session_timeout    60m;
    ssl_protocols  TLSv1.2 TLSv1.3;
    

    Using session tickets requires you're regularly rotating the session ticket keys for security which that article you linked to doesn't even outline the specifics for. If you have a multi web server cluster too, you'd need to account for that across all Nginx servers too.