Welcome to Centmin Mod Community
Register Now

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,446
    1,408
    113
    May 25, 2014
    Ratings:
    +2,201
    Local Time:
    6:27 AM
    Mainline
    10.2
  2. eva2000

    eva2000 Administrator Staff Member

    54,647
    12,230
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,799
    Local Time:
    8:27 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    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.