struct nginx_http_listen_entry
Overview
HTTP server listening socket entry More…
#include <conf_nginx.h> struct nginx_http_listen_entry { // fields char* addr_spec; bool reuseport; bool ssl; char* name; // methods LIST_ENTRY(nginx_http_listen_entry); };
Detailed Documentation
HTTP server listening socket entry
Fields
char* addr_spec
Address specification, e.g. IP-address:port, hostname:port, unix domain socket path
bool reuseport
Create an individual listening socket for each worker
bool ssl
Use ssl for connections
char* name
Friendly entry name
Methods
LIST_ENTRY(nginx_http_listen_entry)
Linked list of entries