File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed
src/BenchmarksApps/TLS/Nginx Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -247,8 +247,8 @@ scenarios:
247
247
tls-handshakes-docker-nginx :
248
248
application :
249
249
job : dockerLinuxNginxServer
250
- buildArguments :
251
- - SSL_LOGGING_ENABLED=false
250
+ # buildArguments:
251
+ # - SSL_LOGGING_ENABLED=false
252
252
load :
253
253
job : httpclient
254
254
variables :
Original file line number Diff line number Diff line change 7
7
'"$http_user_agent" "$http_x_forwarded_for" '
8
8
'[$ssl_protocol] [$ssl_cipher]' ;
9
9
10
- # uncomment to get logs about TLS
11
- access_log /var/log/nginx/access.log ssl_logs {{ SSL_LOGGING_ENABLED}} ;
10
+ # access_log /var/log/nginx/access.log ssl_logs;
12
11
13
12
server {
14
13
listen 8080 ssl ;
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- # Replace the placeholder in the nginx.conf.template with the actual value of SSL_LOGGING_ENABLED
3
- if [ " $SSL_LOGGING_ENABLED " = " true" ]; then
4
- sed ' s|{{SSL_LOGGING_ENABLED}}|if=$SSL_LOGGING_ENABLED|g' /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
5
- else
6
- sed ' s|{{SSL_LOGGING_ENABLED}}||g' /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
7
- fi
8
-
9
2
echo " $( date) - Application started. Logging: $LOGGING "
10
3
nginx -g " daemon off;" # start nginx
You can’t perform that action at this time.
0 commit comments