No description
Find a file
2015-07-12 11:53:18 +00:00
acme Support for py3.3+ in acme 2015-07-12 11:53:18 +00:00
bootstrap Drop M2Crypto 2015-07-06 12:18:27 +00:00
docs Update installation instructions for pkgs subdirs (include trailing slash). 2015-07-11 06:09:52 +00:00
examples Accept new_reg in acme.client.Client.register. 2015-07-08 19:23:12 +00:00
letsencrypt Basic dev/test setup for separate package subdirectories. 2015-07-10 16:38:42 +00:00
letsencrypt-apache mv letsencrypt_* letsencrypt-*. 2015-07-11 04:31:18 +00:00
letsencrypt-nginx mv letsencrypt_* letsencrypt-*. 2015-07-11 04:31:18 +00:00
tests Rewrite acccounts and registration. 2015-07-09 06:43:45 +00:00
.dockerignore Add py3 tox tests for acme.jose 2015-07-12 11:37:56 +00:00
.gitignore Add py3 tox tests for acme.jose 2015-07-12 11:37:56 +00:00
.pylintrc Support for py3.3+ in acme 2015-07-12 11:53:18 +00:00
.travis.yml Once again fix travis/tox venv path. 2015-07-10 17:29:28 +00:00
CHANGES.rst Update references after repo rename. 2015-06-24 04:56:31 +00:00
CONTRIBUTING.md HTTPS ReadTheDocs link in CONTRIBUTING.md 2015-03-22 22:30:57 +00:00
docker-compose.yml Use a discrete path for venv in docker, rather than /opt/letsencrypt. 2015-05-19 17:39:53 -07:00
Dockerfile Update package references after subdirs rename for Vagrant and Docker. 2015-07-11 05:15:10 +00:00
EULA EULA using pkg_resources (fixes #278) 2015-03-11 07:51:06 +00:00
letsencrypt_apache Leave letsencrypt_ symlinks for Boulder integration testing. 2015-07-11 05:08:43 +00:00
letsencrypt_nginx Leave letsencrypt_ symlinks for Boulder integration testing. 2015-07-11 05:08:43 +00:00
LICENSE.txt Update references after repo rename. 2015-06-24 04:56:31 +00:00
linter_plugin.py acme.jose: (Typed)JSONObjectWithFields, Field, JWA. 2015-03-18 14:10:28 +00:00
MANIFEST.in Include requirements.txt in sdist 2015-07-10 16:39:05 +00:00
README.rst Merge pull request #579 from PatrickHeppler/master 2015-07-02 09:23:24 -07:00
readthedocs.org.requirements.txt split dev_extras into dev_extras+docs_extras 2015-02-24 16:23:52 +00:00
requirements.txt requirements.txt: no editable (-e) mode, no "." install. 2015-06-09 07:51:42 +00:00
setup.cfg Merge branch 'bugs/402' into pkgs_sep_prep 2015-05-10 17:56:41 +00:00
setup.py Basic dev/test setup for separate package subdirectories. 2015-07-10 16:38:42 +00:00
tox.cover.sh Bump apache coverage. 2015-06-28 09:42:43 +00:00
tox.ini Add py3 tox tests for acme.jose 2015-07-12 11:37:56 +00:00
Vagrantfile Update package references after subdirs rename. 2015-07-11 04:33:07 +00:00

.. notice for github users

Official **documentation**, including `installation instructions`_, is
available at https://letsencrypt.readthedocs.org.

Generic information about Let's Encrypt project can be found at
https://letsencrypt.org. Please read `Frequently Asked Questions (FAQ)
<https://letsencrypt.org/faq/>`_.


About the Let's Encrypt Client
==============================

|build-status| |coverage| |docs| |container|

In short: getting and installing SSL/TLS certificates made easy (`watch demo video`_).

The Let's Encrypt Client is a tool to automatically receive and install
X.509 certificates to enable TLS on servers. The client will
interoperate with the Let's Encrypt CA which will be issuing browser-trusted
certificates for free beginning the summer of 2015.

It's all automated:

* The tool will prove domain control to the CA and submit a CSR (Certificate
  Signing Request).
* If domain control has been proven, a certificate will get issued and the tool
  will automatically install it.

All you need to do to sign a single domain is::

  user@www:~$ sudo letsencrypt -d www.example.org auth

For multiple domains (SAN) use::
  
  user@www:~$ sudo letsencrypt -d www.example.org -d example.org auth

and if you have a compatible web server (Apache or Nginx), Let's Encrypt can
not only get a new certificate, but also deploy it and configure your
server automatically!::

  user@www:~$ sudo letsencrypt -d www.example.org run


**Encrypt ALL the things!**


.. |build-status| image:: https://travis-ci.org/letsencrypt/letsencrypt.svg?branch=master
   :target: https://travis-ci.org/letsencrypt/letsencrypt
   :alt: Travis CI status

.. |coverage| image:: https://coveralls.io/repos/letsencrypt/letsencrypt/badge.svg?branch=master
   :target: https://coveralls.io/r/letsencrypt/letsencrypt
   :alt: Coverage status

.. |docs| image:: https://readthedocs.org/projects/letsencrypt/badge/
   :target: https://readthedocs.org/projects/letsencrypt/
   :alt: Documentation status

.. |container| image:: https://quay.io/repository/letsencrypt/letsencrypt/status
   :target: https://quay.io/repository/letsencrypt/letsencrypt
   :alt: Docker Repository on Quay.io

.. _`installation instructions`:
   https://letsencrypt.readthedocs.org/en/latest/using.html

.. _watch demo video: https://www.youtube.com/watch?v=Gas_sSB-5SU


Disclaimer
----------

This is a **DEVELOPER PREVIEW** intended for developers and testers only.

**DO NOT RUN THIS CODE ON A PRODUCTION SERVER. IT WILL INSTALL CERTIFICATES
SIGNED BY A TEST CA, AND WILL CAUSE CERT WARNINGS FOR USERS.**


Current Features
----------------

* web servers supported:

  - apache/2.x (tested and working on Ubuntu Linux)
  - nginx/0.8.48+ (tested and mostly working on Ubuntu Linux)
  - standalone (runs its own webserver to prove you control the domain)

* the private key is generated locally on your system
* can talk to the Let's Encrypt (demo) CA or optionally to other ACME
  compliant services
* can get domain-validated (DV) certificates
* can revoke certificates
* adjustable RSA key bitlength (2048 (default), 4096, ...)
* optionally can install a http->https redirect, so your site effectively
  runs https only (Apache only)
* fully automated
* configuration changes are logged and can be reverted using the CLI
* text and ncurses UI
* Free and Open Source Software, made with Python.


Links
-----

Documentation: https://letsencrypt.readthedocs.org

Software project: https://github.com/letsencrypt/letsencrypt

Notes for developers: CONTRIBUTING.md_

Main Website: https://letsencrypt.org/

IRC Channel: #letsencrypt on `Freenode`_

Mailing list: `client-dev`_ (to subscribe without a Google account, send an
email to client-dev+subscribe@letsencrypt.org)

.. _Freenode: https://freenode.net
.. _client-dev: https://groups.google.com/a/letsencrypt.org/forum/#!forum/client-dev
.. _CONTRIBUTING.md: https://github.com/letsencrypt/letsencrypt/blob/master/CONTRIBUTING.md