Adding README, LICENSE and CONTRIBUTORS files
parent
7aacae842d
commit
8e474372aa
|
@ -0,0 +1,6 @@
|
||||||
|
This file contains a list of people who've made non-trivial
|
||||||
|
contribution to the http-two-factor project. People
|
||||||
|
who commit code to the project are encouraged to add their names
|
||||||
|
here. Please keep the list sorted by first names
|
||||||
|
|
||||||
|
Clement Michaud <clement.michaud34@gmail.com>
|
|
@ -0,0 +1,19 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
Copyright (c) 2016 - Clement Michaud
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,57 @@
|
||||||
|
# http-two-factor
|
||||||
|
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)][MIT License]
|
||||||
|
|
||||||
|
**http-two-factor** is the simplest to set up HTTP 2-factor authentication server. It is compatible with NGINX auth_request module and is used in production to secure internal services in a swarm cluster.
|
||||||
|
|
||||||
|
## Getting started
|
||||||
|
|
||||||
|
This project is docker-enabled so that you can deploy and test it very quickly.
|
||||||
|
Before starting, make sure you don't have anything listening on port 8080. Then, type the following command to build and deploy the services:
|
||||||
|
|
||||||
|
docker-compose build
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
After few seconds the services should be running and you should be able to visit: http://localhost:8080/.
|
||||||
|
|
||||||
|
### LDAP authentication
|
||||||
|
An LDAP server has been deployed with the following credentials: **admin/password**.
|
||||||
|
|
||||||
|
### TOTP verification
|
||||||
|
You can use Google Authenticator for the verification of the TOTP token. You can either enter the base32 secret key or scan the QR code in Google Authenticator and the application should start generating verification tokens.
|
||||||
|
|
||||||
|
Test secret key: GRWGIJS6IRHVEODVNRCXCOBMJ5AGC6ZE
|
||||||
|
|
||||||
|
![secret-key](https://github.com/clems4ever/http-two-factor/raw/master/secret-key.png)
|
||||||
|
|
||||||
|
## Contributing to http-two-factor
|
||||||
|
|
||||||
|
Follow [contributing](CONTRIBUTING.md) file.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
http-2-factor is **licensed** under the **[MIT License]**. The terms of the license are as follows:
|
||||||
|
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 - Clement Michaud
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
[MIT License]: https://opensource.org/licenses/MIT
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
|
|
||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
auth-server:
|
auth:
|
||||||
build: .
|
build: .
|
||||||
environment:
|
environment:
|
||||||
- LDAP_URL=ldap://ldap
|
- LDAP_URL=ldap://ldap
|
||||||
- LDAP_USERS_DN=dc=example,dc=com
|
- LDAP_USERS_DN=dc=example,dc=com
|
||||||
- TOTP_SECRET=NBD2ZV64R7UV1O7K
|
- TOTP_SECRET=GRWGIJS6IRHVEODVNRCXCOBMJ5AGC6ZE
|
||||||
- JWT_SECRET=unsecure_secret
|
- JWT_SECRET=unsecure_secret
|
||||||
- JWT_EXPIRATION_TIME=1h
|
- JWT_EXPIRATION_TIME=1h
|
||||||
- PORT=80
|
- PORT=80
|
||||||
|
@ -20,7 +20,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- LDAP_ORGANISATION=MyCompany
|
- LDAP_ORGANISATION=MyCompany
|
||||||
- LDAP_DOMAIN=example.com
|
- LDAP_DOMAIN=example.com
|
||||||
- LDAP_ADMIN_PASSWORD=test
|
- LDAP_ADMIN_PASSWORD=password
|
||||||
expose:
|
expose:
|
||||||
- "389"
|
- "389"
|
||||||
|
|
||||||
|
@ -31,6 +31,6 @@ services:
|
||||||
- ./nginx_conf/index.html:/usr/share/nginx/html/index.html
|
- ./nginx_conf/index.html:/usr/share/nginx/html/index.html
|
||||||
- ./nginx_conf/secret.html:/usr/share/nginx/html/secret.html
|
- ./nginx_conf/secret.html:/usr/share/nginx/html/secret.html
|
||||||
depends_on:
|
depends_on:
|
||||||
- auth-server
|
- auth
|
||||||
ports:
|
ports:
|
||||||
- "8085:80"
|
- "8080:80"
|
||||||
|
|
|
@ -39,7 +39,7 @@ http {
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
||||||
proxy_pass http://auth-server/_auth;
|
proxy_pass http://auth/_auth;
|
||||||
}
|
}
|
||||||
|
|
||||||
location /auth/ {
|
location /auth/ {
|
||||||
|
@ -47,7 +47,7 @@ http {
|
||||||
proxy_set_header Host $http_host;
|
proxy_set_header Host $http_host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
||||||
proxy_pass http://auth-server/;
|
proxy_pass http://auth/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location = /secret.html {
|
location = /secret.html {
|
||||||
|
@ -67,7 +67,7 @@ http {
|
||||||
if ($request_method != POST) {
|
if ($request_method != POST) {
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
proxy_pass http://auth-server/_auth;
|
proxy_pass http://auth/_auth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.0 KiB |
Loading…
Reference in New Issue