Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2012-10-01 16:41:08 +0400
committerMaxim Dounin <mdounin@mdounin.ru>2012-10-01 16:41:08 +0400
commit85c920a0cd4983679fe51ad492abf5dea8ccc497 (patch)
treea8dea075ef1040da844ef777e184f9e22176d997 /auto/sources
parent3648ba7db833d318269daba2a8d6be42660c5b60 (diff)
OCSP stapling: ssl_stapling_file support.
Very basic version without any OCSP responder query code, assuming valid DER-encoded OCSP response is present in a ssl_stapling_file configured. Such file might be produced with openssl like this: openssl ocsp -issuer root.crt -cert domain.crt -respout domain.staple \ -url http://ocsp.example.com
Diffstat (limited to 'auto/sources')
-rw-r--r--auto/sources3
1 files changed, 2 insertions, 1 deletions
diff --git a/auto/sources b/auto/sources
index 37677c737..cc19f8d51 100644
--- a/auto/sources
+++ b/auto/sources
@@ -77,7 +77,8 @@ REGEX_SRCS=src/core/ngx_regex.c
OPENSSL_MODULE=ngx_openssl_module
OPENSSL_DEPS=src/event/ngx_event_openssl.h
-OPENSSL_SRCS=src/event/ngx_event_openssl.c
+OPENSSL_SRCS="src/event/ngx_event_openssl.c \
+ src/event/ngx_event_openssl_stapling.c"
EVENT_MODULES="ngx_events_module ngx_event_core_module"