struct nginx_ssl_entry

Overview

SSL settings entry More…

#include <conf_nginx.h>

struct nginx_ssl_entry {
    // fields

    char* name;
    char* cert;
    char* key;
    char* ciphers;
    char* protocols;
    char* session_cache;
    unsigned int session_timeout;

    // methods

    LIST_ENTRY(nginx_ssl_entry);
};

Detailed Documentation

SSL settings entry

Fields

char* name

Friendly name of ssl entry

char* cert

File path to certificate

char* key

File path to certificate secrete key

char* ciphers

SSL ciphers in OpenSSL library format

char* protocols

SSL protocols list

char* session_cache

SSL sessions cache specification

unsigned int session_timeout

Timeout in seconds during which a client may reuse the session parameters

Methods

LIST_ENTRY(nginx_ssl_entry)

Linked list of entries