From a23d515541445d54c0707e8bf718e6cc46a2fd67 Mon Sep 17 00:00:00 2001 From: Sean Leonard Date: Fri, 8 Nov 2013 09:40:35 -0800 Subject: Translate overview/de.html to overview/en.html --- overview/en.html | 221 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 221 insertions(+) create mode 100644 overview/en.html diff --git a/overview/en.html b/overview/en.html new file mode 100644 index 0000000..d85bd47 --- /dev/null +++ b/overview/en.html @@ -0,0 +1,221 @@ + + + + + Leap Encryption Access Project + + + + + + + + + + + + + + + + + + + + + +
+
+
+

LEAP Encryption Access Project

+
+ +
+
  • Tools for secure network communications
  • +
  • Encryption should be simple to provide and use
  • +
  • Decentralization of service providers
  • +
    + +
    +
    +

    For Users

    +
  • Bitmask-Client for Mac OS, Linux, Android (Windows coming)
  • +
    +
    + Bitmask-Client +
    +
    + +
    +
    +

    For Providers

    +
      +
    • Automate Installation and Configuration of the services
    • +
    • Secure Crypto presets (TLS parameters, etc)
    • +
    +
    +
    +

    leap-platform

    +
  • Puppet recipes for configuring the server
  • +
    
    +# smtp TLS                                                                    
    +postfix::config {                                                             
    +  'smtp_use_tls':        value  => 'yes';                                     
    +  'smtp_tls_CApath':     value  => '/etc/ssl/certs/';                         
    +  'smtp_tls_CAfile':     value  => $ca_path;                                  
    +  'smtp_tls_cert_file':  value  => $cert_path;                                
    +  'smtp_tls_key_file':   value  => $key_path;                                 
    +  'smtp_tls_ask_ccert':  value  => 'yes';                                     
    +  'smtp_tls_loglevel':   value  => '1';                                       
    +  'smtp_tls_exclude_ciphers':                                                 
    +    value => 'aNULL, MD5, DES';                                               
    +  # upstream default is md5 (since 2.5 and older used it), we force sha1      
    +  'smtp_tls_fingerprint_digest':                                              
    +    value => 'sha1';                                                          
    +  'smtp_tls_session_cache_database':                                          
    +    value => 'btree:${queue_directory}/smtp_cache';                           
    +  'smtp_tls_security_level':                                                  
    +    value  => 'may';                                                          
    +  # see issue #4011                                                           
    +  'smtp_tls_protocols':                                                       
    +    value => '!SSLv2, !SSLv3';                                                
    +}                            
    +            
    + +
    +
    +

    Provider Config

    +
  • Server Layout, IPs, contact details, etc
  • +
    
    +$ cat provider.json 
    +//
    +// General service provider configuration.
    +//
    +{
    +  "domain": "example.org",
    +  "name": {
    +    "en": "example"
    +  },
    +  "description": {
    +    "en": "You really should change this text"
    +  },
    +  "contacts": {
    +    "default": "admin@example.org"
    +  },
    +  "languages": ["en"],
    +  "default_language": "en",
    +  "enrollment_policy": "open"
    +}
    +
    +$ cat nodes/web1.json 
    +{
    +  "ip_address": "99.231.92.23",
    +  "services": "webapp",
    +  "tags": "production"
    +}
    +            
    +
    +
    +

    Leap-cli

    +
  • Command Line Tools for Admins
  • +
    
    +$ leap --yes deploy
    + Deploying to these nodes: web1, vpn1, couch1
    + = updated hiera/couch1.yaml
    + = updated hiera/web1.yaml
    + = checking node 
    +   - [web1] ok
    +   - [couch1] ok
    +   - [vpn1] ok
    + = synching configuration files
    +   - hiera/web1.yaml -> web1:/etc/leap/hiera.yaml
    +   - hiera/vpn1.yaml -> vpn1:/etc/leap/hiera.yaml
    +   - hiera/couch1.yaml -> couch1:/etc/leap/hiera.yaml
    +   - files/branding/tail.scss, files/branding/head.scss -> web1:/etc/leap
    + = synching puppet manifests
    +   - /home/demo/leap/demo/leap_platform/[bin,puppet] -> web1:/srv/leap
    +   - /home/demo/leap/demo/leap_platform/[bin,puppet] -> vpn1:/srv/leap
    +   - /home/demo/leap/demo/leap_platform/[bin,puppet] -> couch1:/srv/leap
    +...
    +            
    +
    +
    +

    Leap-cli Screencasts

    +
  • Shelr Screencasts - Setup and Installation of a Provider
  • +
    + +
    + +
    +

    Services

    +

    Encrypted Internet Proxy aka VPN

    +

    Email

    +

    Chat (in progress)

    +
    + +
    +

    Services in Planning

    +

    Client-Encrypted Filehosting

    +

    Voip

    +

    Collaborative Text Editor

    +
    + +
    +
    +

    Provider Online

    +
  • Bitmask.net - Reference Provider of LEAP
  • +
  • soon to be open for beta testers
  • +
    + +
    +

    Interested Providers

    +
  • The Calyx Institute
  • + +
  • The Riseup Collective
  • +
  • ...
  • +
    +
    + +
    +

    Etc

    +
  • Website: https://leap.se
  • +
  • Github Mirror: https://github.com/leapcode
  • +
  • Made withreveal.js
  • +

    +
    + +
    + +
    + + + + + + + + -- cgit v1.2.3