Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robrwo/plack-middleware-timeoverhttp
time over HTTP middleware
https://github.com/robrwo/plack-middleware-timeoverhttp
Last synced: 11 days ago
JSON representation
time over HTTP middleware
- Host: GitHub
- URL: https://github.com/robrwo/plack-middleware-timeoverhttp
- Owner: robrwo
- Created: 2018-01-05T09:58:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T16:30:08.000Z (over 4 years ago)
- Last Synced: 2024-10-11T21:56:27.159Z (about 1 month ago)
- Language: Perl
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Plack::Middleware::TimeOverHTTP - time over HTTP middleware
# VERSION
version v0.1.2
# SYNOPSIS
```perl
use Plack::Builder;my $app = sub { ... };
builder {
enable "TimeOverHTTP";
$app;
};
```# DESCRIPTION
This middleware adds a simplified implementation of the Time
over HTTP specification at the URL “/.well-known/time”.It does not enforce any restrictions on the request headers.
This middleware does not implement rate limiting or restrictions based
on IP address. You will need to use additional middleware for that.# SEE ALSO
The "Time Over HTTPS specification" at
[http://phk.freebsd.dk/time/20151129/](http://phk.freebsd.dk/time/20151129/).# AUTHOR
Robert Rothenberg
# COPYRIGHT AND LICENSE
This software is Copyright (c) 2018-2020 by Robert Rothenberg.
This is free software, licensed under:
```
The Artistic License 2.0 (GPL Compatible)
```