-
- Downloads
initial public version
parents
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- COPYRIGHT 15 additions, 0 deletionsCOPYRIGHT
- Cargo.lock 0 additions, 0 deletionsCargo.lock
- Cargo.toml 28 additions, 0 deletionsCargo.toml
- LICENSE 2 additions, 0 deletionsLICENSE
- LICENSE-APACHE 176 additions, 0 deletionsLICENSE-APACHE
- LICENSE-CC0 119 additions, 0 deletionsLICENSE-CC0
- LICENSE-MIT 23 additions, 0 deletionsLICENSE-MIT
- README.md 25 additions, 0 deletionsREADME.md
- debian/postinst 5 additions, 0 deletionsdebian/postinst
- debian/postrm 3 additions, 0 deletionsdebian/postrm
- debian/prerm 4 additions, 0 deletionsdebian/prerm
- gdpr-authenticator.service 23 additions, 0 deletionsgdpr-authenticator.service
- gdpr-check.nginx 14 additions, 0 deletionsgdpr-check.nginx
- greenlight.nginx 27 additions, 0 deletionsgreenlight.nginx
- nginx.conf 47 additions, 0 deletionsnginx.conf
- src/bulma.min.css 0 additions, 0 deletionssrc/bulma.min.css
- src/index.html 0 additions, 0 deletionssrc/index.html
- src/main.rs 39 additions, 0 deletionssrc/main.rs
- src/setcookie.js 25 additions, 0 deletionssrc/setcookie.js
.gitignore
0 → 100644
COPYRIGHT
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | |||
name = "gdpr-authenticator" | |||
version = "0.1.4" | |||
authors = ["Johannes <johannes.barthel@student.kit.edu>"] | |||
edition = "2018" | |||
description = "Consent wall for Senfcall privacy policy" | |||
license = "MIT OR Apache-2.0" | |||
[dependencies] | |||
warp = "0.2.2" | |||
tokio = {features = ["macros"], version = "0.2.18"} | |||
[package.metadata.deb] | |||
maintainer = "Johannes <johannes.barthel@student.kit.edu>" | |||
copyright = "2020 Computerwerk Darmstadt e.V. <vorstand@computerwerk.org>" | |||
license-file = ["LICENSE", "3"] | |||
depends = "$auto, systemd, nginx" | |||
extended-description = """\ | |||
Consent wall for our Senfcall privacy policy. Implemented to interface with the | |||
nginx_auth plugin""" | |||
section = "httpd" | |||
priority = "optional" | |||
assets = [ | |||
["gdpr-check.nginx", "etc/bigbluebutton/nginx/", "644"], | |||
["gdpr-authenticator.service", "/lib/systemd/system/", "644"], | |||
["target/release/gdpr-authenticator", "usr/bin/", "755"] | |||
] | |||
maintainer-scripts = "debian" |
LICENSE
0 → 120000
LICENSE-APACHE
0 → 100644
LICENSE-CC0
0 → 100644
LICENSE-MIT
0 → 100644
README.md
0 → 100644
debian/postinst
0 → 100644
debian/postrm
0 → 100644
debian/prerm
0 → 100644
gdpr-authenticator.service
0 → 100644
gdpr-check.nginx
0 → 100644
greenlight.nginx
0 → 100644
nginx.conf
0 → 100644
src/bulma.min.css
0 → 100644
This diff is collapsed.
src/index.html
0 → 100644
This diff is collapsed.
src/main.rs
0 → 100644
src/setcookie.js
0 → 100644
Please register or sign in to comment