diff --git a/build/constants.yaml b/build/constants.yaml index e958852382..a31ecb5106 100644 --- a/build/constants.yaml +++ b/build/constants.yaml @@ -164,7 +164,7 @@ - name: php-versions constants: php-runtime-base-tag: 20230713.2 - php-fpm-runtime-base-tag: 20230713.2 + php-fpm-runtime-base-tag: 20230720.2 composer-version: 2.0.8 composer-setup-sha384: e21205b207c3ff031906575712edab6f13eb0b361f2085f1f1237b7126d785e826a450292b6cfd1d64d92e6563bbde02 composer1-9-version: 1.9.3 diff --git a/images/runtime/php-fpm/nginx_conf/default.conf b/images/runtime/php-fpm/nginx_conf/default.conf index 7fe16994fd..a40a461a61 100644 --- a/images/runtime/php-fpm/nginx_conf/default.conf +++ b/images/runtime/php-fpm/nginx_conf/default.conf @@ -27,8 +27,8 @@ server { } # Add locations of phpmyadmin here. - location ~ [^/]\.php(/|$) { - fastcgi_split_path_info ^(.+?\.php)(|/.*)$; + location ~* [^/]\.php(/|$) { + fastcgi_split_path_info ^(.+?\.[Pp][Hh][Pp])(|/.*)$; fastcgi_pass 127.0.0.1:9000; include fastcgi_params; fastcgi_param HTTP_PROXY ""; diff --git a/tests/Oryx.BuildImage.Tests/Python/CondaTests.cs b/tests/Oryx.BuildImage.Tests/Python/CondaTests.cs index 2d941f510e..3077686ba8 100644 --- a/tests/Oryx.BuildImage.Tests/Python/CondaTests.cs +++ b/tests/Oryx.BuildImage.Tests/Python/CondaTests.cs @@ -193,7 +193,7 @@ public void CanBuildJuliaPythonSampleApp() result.GetDebugInfo()); } - [Fact, Trait("category", "vso-focal")] + [Fact(Skip = "Skipping test temporarily"), Trait("category", "vso-focal")] public void CanBuildJupiterRiseApp() { // Arrange @@ -229,7 +229,7 @@ public void CanBuildJupiterRiseApp() result.GetDebugInfo()); } - [Theory, Trait("category", "vso-focal")] + [Theory(Skip = "Skipping test temporarily"), Trait("category", "vso-focal")] [InlineData("jupyter-rise")] public void BuildJupiterCondaApps_Prints_BuildCommands_In_File(string appName) {