Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
Nginx variable $ssl_client_s_dn changed value (#391)
Browse files Browse the repository at this point in the history
In nginx release 1.11.6 the variable $ssl_client_s_dn was
had it's value format updated to meet an RFC spec.

nginx/nginx@71c93a

Adjust our parsing to account for the new format and
require version >= 1.11.6 nginx.

Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
  • Loading branch information
brianjmurrell authored and Joe Grund committed Nov 22, 2017
1 parent fbcda7e commit ac80e81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chroma-manager/chroma-manager.conf.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
map $ssl_client_s_dn $ssl_client_s_dn_cn {
default "";
~/CN=(?<CN>[^/]+) $CN;
~CN=(?<CN>[^,]+) $CN;
}

error_log syslog:server=unix:/dev/log;
Expand Down
4 changes: 2 additions & 2 deletions chroma-manager/chroma-manager.spec
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ Obsoletes: django-celery

%if 0%{?rhel} < 7
Requires: fence-agents-iml >= 3.1.5-48.wc1.el6.2
Requires: nginx >= 1.10.1-1
Requires: nginx >= 1.11.6
%endif

%if 0%{?rhel} > 6
Requires: fence-agents
Requires: fence-agents-virsh
Requires: nginx >= 1:1.10.1-1
Requires: nginx >= 1:1.11.6
%endif

%description
Expand Down

0 comments on commit ac80e81

Please sign in to comment.