Bug Report
- At what date and time did you most recently experience the problem?
Apr 27th 2026, starting at 10:30am Chicago time.
- Where did you experience the problem? E.g. Azure Web Apps, Azure Functions, Azure Container Registry, or offline use.
Azure Web Apps, PHP 8.3 platform with a custom startup.sh script.
Our custom startup.sh script installs some nginx modules. These failed because the https://packages.sury.org/nginx/ repo in /etc/apt/sources.lists.d/nginx.list was giving a 404 error. Investigating, this is because the maintainer has deleted the repo on Apr 26th.
- What did you expect or want to happen?
The nginx module we wanted would be installed.
Use a custom startup.sh script such as:
set -e
apt update
apt install -y --no-install-recommends libnginx-mod-http-lua
This will show a 404 error and failure at the apt update step because of the bad repo in /etc/apt/sources.lists.d/nginx.list. It gets added to the runtime here:
|
RUN curl -sSL https://packages.sury.org/nginx/README.txt | bash -x |
On the latest PHP 8.5 platform it is also broken as that repo was also deleted. It is added to the runtime here:
|
# Install NGINX latest stable version using Ondřej Surý's PPA for Ubuntu |
Bug Report
Apr 27th 2026, starting at 10:30am Chicago time.
Azure Web Apps, PHP 8.3 platform with a custom startup.sh script.
Our custom startup.sh script installs some nginx modules. These failed because the https://packages.sury.org/nginx/ repo in /etc/apt/sources.lists.d/nginx.list was giving a 404 error. Investigating, this is because the maintainer has deleted the repo on Apr 26th.
The nginx module we wanted would be installed.
Use a custom startup.sh script such as:
set -e apt update apt install -y --no-install-recommends libnginx-mod-http-luaThis will show a 404 error and failure at the apt update step because of the bad repo in /etc/apt/sources.lists.d/nginx.list. It gets added to the runtime here:
Oryx/images/runtime/php-fpm/8.3/bookworm.Dockerfile
Line 278 in 0e19355
On the latest PHP 8.5 platform it is also broken as that repo was also deleted. It is added to the runtime here:
Oryx/images/runtime/php-fpm/8.5/noble.Dockerfile
Line 275 in 0e19355