Skip to content

Commit

Permalink
[noissue] Making the matching less strict
Browse files Browse the repository at this point in the history
  • Loading branch information
tinsjourney committed Sep 29, 2023
1 parent fbb4c2c commit a3e96e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/s6_assets/init/nginx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if [[ "${PULP_HTTPS}" = "true" || "${PULP_HTTPS}" = "True" ]]; then
if [ "${PULP_HTTPS,,}" = "true" ]; then
cp -avr /nginx/ssl_nginx.conf /etc/nginx/nginx.conf
else
cp -avr /nginx/nginx.conf /etc/nginx/nginx.conf
Expand Down

0 comments on commit a3e96e7

Please sign in to comment.