File tree 2 files changed +5
-6
lines changed
src/BenchmarksApps/TLS/Nginx
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 66
66
branchOrCommit : main
67
67
dockerFile : dockerNginx/src/BenchmarksApps/TLS/Nginx/Dockerfile
68
68
dockerImageName : dockerNginx
69
- dockerContextDirectory : dockerNginx/src/BenchmarksApps/TLS/Nginx
69
+ dockerContextDirectory : dockerNginx/src/BenchmarksApps/TLS
70
70
port : 8080
71
71
readyStateText : Application started.
72
72
environmentVariables :
@@ -250,7 +250,6 @@ scenarios:
250
250
job : dockerLinuxNginxServer
251
251
buildArguments :
252
252
- CERT_KEY_LENGTH=2048
253
- dockerContextDirectory : ../
254
253
load :
255
254
job : httpclient
256
255
variables :
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ FROM nginx:latest
4
4
ARG CERT_KEY_LENGTH=2048
5
5
6
6
# Copy configuration
7
- COPY config/nginx.conf /etc/nginx/nginx.conf
8
- COPY config/start-nginx.sh /start-nginx.sh
7
+ COPY Nginx/ config/nginx.conf /etc/nginx/nginx.conf
8
+ COPY Nginx/ config/start-nginx.sh /start-nginx.sh
9
9
10
10
# Copy SSL certificates
11
- COPY ../ Certificates/${CERT_KEY_LENGTH}/cert.pem /etc/nginx/certs/cert.pem
12
- COPY ../ Certificates/${CERT_KEY_LENGTH}/key.pem /etc/nginx/certs/key.pem
11
+ COPY Certificates/${CERT_KEY_LENGTH}/cert.pem /etc/nginx/certs/cert.pem
12
+ COPY Certificates/${CERT_KEY_LENGTH}/key.pem /etc/nginx/certs/key.pem
13
13
14
14
# Make the script executable
15
15
RUN chmod +x /start-nginx.sh
You can’t perform that action at this time.
0 commit comments