File tree Expand file tree Collapse file tree 15 files changed +16
-25
lines changed
Expand file tree Collapse file tree 15 files changed +16
-25
lines changed Original file line number Diff line number Diff line change @@ -229,8 +229,8 @@ jobs:
229229 - name : Tests (Debian) - Gosu user switching
230230 run : |
231231 docker run kooldev/php:8.4-debian${{ matrix.type }} gosu --version
232- # Verify gosu works for user switching
233- docker run -e ASUSER=1000 kooldev/php:8.4-debian${{ matrix.type }} id | grep -E "uid=1000|uid=1337 "
232+ # Verify gosu works for user switching - should be uid=1000 when ASUSER=1000
233+ docker run -e ASUSER=1000 kooldev/php:8.4-debian${{ matrix.type }} id | grep "uid=1000"
234234
235235 - name : Tests (Debian) - PHP Extensions
236236 run : |
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 55 listen {{ .Env.NGINX_LISTEN_HTTPS }} ssl http2;
66 ssl_certificate {{ .Env.NGINX_HTTPS_CERT }};
77 ssl_certificate_key {{ .Env.NGINX_HTTPS_CERT_KEY }};
8- ssl_protocols TLSv1 TLSv1 .1 TLSv1.2 ;
8+ ssl_protocols TLSv1.2 TLSv1.3 ;
99 ssl_ciphers HIGH:!aNULL:!MD5;
1010{{ end }}
1111 root {{ .Env.NGINX_ROOT }};
Original file line number Diff line number Diff line change 22set -e
33
44if [ " $ENABLE_XDEBUG " = " true" ]; then
5- docker-php-ext-enable xdebug >> /dev/null 2>&1
6-
7- if [ $? != " 0" ]; then
5+ if ! docker-php-ext-enable xdebug >> /dev/null 2>&1 ; then
86 echo " [ERROR] An error happened enabling xdebug"
9-
107 exit 1
118 fi
129fi
You can’t perform that action at this time.
0 commit comments