Skip to content

Commit

Permalink
chore(deps-dev): bump pestphp/pest from 2.33.6 to 2.34.8 (#2230)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump pestphp/pest from 2.33.6 to 2.34.8

Bumps [pestphp/pest](https://github.com/pestphp/pest) from 2.33.6 to 2.34.8.
- [Release notes](https://github.com/pestphp/pest/releases)
- [Changelog](https://github.com/pestphp/pest/blob/2.x/RELEASE.md)
- [Commits](pestphp/pest@v2.33.6...v2.34.8)

---
updated-dependencies:
- dependency-name: pestphp/pest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* build: fixed healthcheck for meilisearch

* build: 🐛 removed IP restrictions for local nginx status healthcheck

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marvin Roman <marvin@colab.coop>
  • Loading branch information
dependabot[bot] and marvinroman authored Jul 5, 2024
1 parent 702edaf commit b002f1a
Show file tree
Hide file tree
Showing 3 changed files with 261 additions and 243 deletions.
9 changes: 5 additions & 4 deletions .local-deploy/accessibility-app/etc/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ http {

location /nginx_status {
stub_status on;
allow 127.0.0.1;
allow 10.0.0.0/8;
allow 172.0.0.0/8;
deny all;
# don't need ip restrictions for local testing
# allow 127.0.0.1;
# allow 10.0.0.0/8;
# allow 172.0.0.0/8;
# deny all;
}

include /etc/nginx/includes/laravel.conf;
Expand Down
Loading

0 comments on commit b002f1a

Please sign in to comment.