Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Fix broken link 2.15 #1509

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ APIcast uses:

- [OpenResty](http://openresty.org/en/): a platform that includes NGINX, LuaJIT and Lua modules.
- [busted](https://github.com/Olivine-Labs/busted): for the unit tests.
- [Test::Nginx](http://search.cpan.org/~agent/Test-Nginx/lib/Test/Nginx/Socket.pm): for the integration tests.
- [Test::Nginx](https://metacpan.org/pod/Test::Nginx): for the integration tests.

More info can be found in the [development](/doc/development.md) specific doc.

Expand Down
2 changes: 1 addition & 1 deletion dev-environments/camel-proxy/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Camel PROXY

Development environment to test integration between APIcast and proxies built
on top of [Camel framework](https://camel.apache.org/components/4.0.x/netty-http-component.html)
on top of [Camel framework](https://camel.apache.org/components/4.8.x/netty-http-component.html)

This dev environment uses [Camel Netty Proxy example](https://github.com/zregvart/camel-netty-proxy).
Any request that is received using the HTTP PROXY protocol,
Expand Down
2 changes: 1 addition & 1 deletion doc/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ APIcast is an application based on [OpenResty](https://openresty.org/en/). APIca

## Release

APIcast is released as [Docker image](https://docs.docker.com/engine/tutorials/dockerimages/).
APIcast is released as [Docker image](https://docs.docker.com).

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion doc/why.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ All code is open-source on GitHub.

Splitting code and configuration allows thorough testing of each component individually. We are trying hard to cover every feature and every fix by a regression test.

Using wonderful [Test::Nginx](http://search.cpan.org/~agent/Test-Nginx/lib/Test/Nginx/Socket.pm) framework for high level integration tests allows us to run every test several times in random order to ensure there are no random failures.
Using wonderful [Test::Nginx](https://metacpan.org/pod/Test::Nginx) framework for high level integration tests allows us to run every test several times in random order to ensure there are no random failures.

Low level unit testing is done in Lua testing framework [busted](https://github.com/Olivine-Labs/busted). That allows us to run low level tests for edge cases easily and run them in isolation.

Expand Down