This patch enables the NGINX SSL module to respond with a TACK TLS Extension.
syntax: ssl_tack (on|off);
default: off
context: server
on - Enable TLS extension
off - Disable TLS extension
syntax: ssl_tack_file <string>
default: none
context: server
Sets TACK file path.
syntax: ssl_tack_pin_activation (0|1|2|3);
default: 0
context: server
http://tack.io/draft.html#anchor9
Grab the nginx source code from nginx.org. Patch and compile it with openssl_tack.
wget 'http://nginx.org/download/nginx-VERSION.tar.gz'
tar -xzvf nginx-VERSION.tar.gz
patch -p0 < ngx_http_ssl_module-VERSION.patch
./configure --with-debug --with-openssl=/path/to/openssl_tack --with-http_ssl_module
make
make install
server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate ssl/testhost.crt;
ssl_certificate_key ssl/testhost.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
ssl_tack on;
ssl_tack_file ssl/tack.sig;
ssl_tack_activation_flags 1;
location / {
root html;
}
}