Skip to content

Commit fd2352d

Browse files
authored
docs: update http links to https (fastify#3976)
1 parent afd887f commit fd2352d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ This project is kindly sponsored by:
292292
- [nearForm](https://nearform.com)
293293

294294
Past Sponsors:
295-
- [LetzDoIt](http://www.letzdoitapp.com/)
295+
- [LetzDoIt](https://www.letzdoitapp.com/)
296296

297297
## License
298298

docs/Guides/Prototype-Poisoning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ address.
359359
We also got lucky by having full access to mitigate it at the source — didn't
360360
need to send emails to some unknown framework maintainer and hope for a quick
361361
answer. hapi's total control over all of its dependencies proved its usefulness
362-
and security again. Not using [hapi](http://hapijs.com)? [Maybe you
362+
and security again. Not using [hapi](https://hapi.dev)? [Maybe you
363363
should](https://hueniverse.com/why-you-should-consider-hapi-6163689bd7c2).
364364

365365
### The after in happy ever-after

docs/Guides/Recommendations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ backend static-backend
172172
# with 2 primary servers distributed via round-robin
173173
# and one backup which is used when the first 2 are not reachable
174174
# This also assumes your fastify servers are listening on port 80.
175-
# more info: http://nginx.org/en/docs/http/ngx_http_upstream_module.html
175+
# more info: https://nginx.org/en/docs/http/ngx_http_upstream_module.html
176176
upstream fastify_app {
177177
server 10.10.11.1:80;
178178
server 10.10.11.2:80;
@@ -257,7 +257,7 @@ server {
257257
# trustProxy to the address of your NGINX server so the X-Forwarded
258258
# fields are used by fastify.
259259
location / {
260-
# more info: http://nginx.org/en/docs/http/ngx_http_proxy_module.html
260+
# more info: https://nginx.org/en/docs/http/ngx_http_proxy_module.html
261261
proxy_http_version 1.1;
262262
proxy_cache_bypass $http_upgrade;
263263
proxy_set_header Upgrade $http_upgrade;

docs/Reference/Routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ You can provide a `version` key in the `constraints` option to a route.
540540
Versioned routes allow you to declare multiple handlers for the same HTTP route
541541
path, which will then be matched according to each request's `Accept-Version`
542542
header. The `Accept-Version` header value should follow the
543-
[semver](http://semver.org/) specification, and routes should be declared with
543+
[semver](https://semver.org/) specification, and routes should be declared with
544544
exact semver versions for matching.
545545

546546
Fastify will require a request `Accept-Version` header to be set if the route

0 commit comments

Comments
 (0)