Skip to content

Commit

Permalink
Merge branch 'release/1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Oct 26, 2020
2 parents 0aa0739 + 75af106 commit 1b1037c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# nystudio107/docker-images Change Log

## 1.0.4 - 2020.10.26
### Changed
* Use port `9003` for `xdebug`

## 1.0.3 - 2020.10.24
### Added
* Added a `php_xdebug` container to speed up normal request by eliminating `xdebug` unless it's requested for via `XDEBUG_SESSION` cookie
Expand Down
2 changes: 2 additions & 0 deletions nginx/nginx-1.18/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ server {
access_log off;
error_log /dev/stdout info;

location = /favicon.ico { access_log off; log_not_found off; }

location / {
try_files $uri/index.html $uri $uri/ /index.php?$query_string;
}
Expand Down
2 changes: 1 addition & 1 deletion php-dev-base/php-7.3/xdebug.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_port=9003
xdebug.remote_handler=dbgp
xdebug.remote_connect_back=1
xdebug.remote_host=host.docker.internal
Expand Down

0 comments on commit 1b1037c

Please sign in to comment.