Skip to content

Commit

Permalink
Docker fix default fastcgi.logging (#3875)
Browse files Browse the repository at this point in the history
Mistake from #3500
Wrong file extension: should have been `.ini` and not `.conf` otherwise it has no effect.
See docker-library/php#1360 and docker-library/php#878 (comment)
  • Loading branch information
Alkarex authored Jan 5, 2024
1 parent 0f6fa80 commit 12395fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ENV CURL_IMPERSONATE ff91esr

COPY ./config/nginx.conf /etc/nginx/sites-available/default
COPY ./config/php-fpm.conf /etc/php/8.2/fpm/pool.d/rss-bridge.conf
COPY ./config/php.ini /etc/php/8.2/fpm/conf.d/90-rss-bridge.conf
COPY ./config/php.ini /etc/php/8.2/fpm/conf.d/90-rss-bridge.ini

COPY --chown=www-data:www-data ./ /app/

Expand Down
2 changes: 1 addition & 1 deletion config/php.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; Inspired by https://github.com/docker-library/php/blob/master/8.2/bookworm/fpm/Dockerfile

; https://github.com/docker-library/php/issues/878#issuecomment-938595965'
; https://github.com/docker-library/php/issues/878#issuecomment-938595965
fastcgi.logging = Off

0 comments on commit 12395fc

Please sign in to comment.