Certificats Let's Encrypt
Find a file
2015-06-24 13:29:26 -06:00
acme Rewrap after errors rename, doc fixes. 2015-06-22 22:43:42 +00:00
bootstrap move lsb install into newer with --no-install-recommends 2015-06-24 13:29:26 -06:00
docs Move letsencrypt.network to acme.client. 2015-06-22 04:52:08 +00:00
examples Update restified example script and rename to acme_client.py 2015-06-22 09:28:16 +00:00
letsencrypt Errors prefix: do not touch CLI. 2015-06-22 22:45:45 +00:00
letsencrypt_apache Rewrap after errors rename, doc fixes. 2015-06-22 22:43:42 +00:00
letsencrypt_nginx Rewrap after errors rename, doc fixes. 2015-06-22 22:43:42 +00:00
.dockerignore .dockerignore venv and docs 2015-05-10 14:26:33 +00:00
.gitignore gitignore: +htmlcov, -m3, reorg 2015-06-02 10:41:33 +00:00
.pylintrc Merge branch 'master' of ssh://github.com/letsencrypt/lets-encrypt-preview into renewer 2015-05-22 14:39:51 -07:00
.travis.yml Revert "Remove support for python2.6" 2015-06-19 08:17:49 +00:00
CHANGES.rst docs: markup fixes, separate section for api docs, link to demo video, improved phrasing 2015-01-26 14:58:24 +01: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 Dockerfile: note about missing requirements.txt 2015-06-19 08:16:03 +00:00
EULA EULA using pkg_resources (fixes #278) 2015-03-11 07:51:06 +00:00
LICENSE.txt Update LICENSE.txt for nginxparser attribution 2015-04-17 22:24:19 -07:00
linter_plugin.py acme.jose: (Typed)JSONObjectWithFields, Field, JWA. 2015-03-18 14:10:28 +00:00
MANIFEST.in Merge pull request #484 from fmarier/rename-apache-config 2015-06-11 17:34:48 -04:00
README.rst Remove preview from github and travis 2015-06-23 18:38:24 -04:00
readthedocs.org.requirements.txt split dev_extras into dev_extras+docs_extras 2015-02-24 16:23:52 +00:00
requirements-swig-3.0.5.txt Separate requirements.txt for SWIG 3.0.5+ 2015-06-12 12:55:33 +00:00
requirements.txt Separate requirements.txt for SWIG 3.0.5+ 2015-06-12 12:55:33 +00:00
setup.cfg Merge branch 'bugs/402' into pkgs_sep_prep 2015-05-10 17:56:41 +00:00
setup.py setup.py: separate install_requires 2015-06-22 21:58:13 +00:00
tox.cover.sh Merge pull request #474 from kuba/nginx-apache-split 2015-06-20 12:57:31 -04:00
tox.ini requirements.txt: no editable (-e) mode, no "." install. 2015-06-09 07:51:42 +00:00
Vagrantfile Vagrant: remove explicit git-core install 2015-06-12 11:54:12 +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 is::

  user@www:~$ sudo letsencrypt -d www.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/lets-encrypt-preview/badge.svg?branch=master
   :target: https://coveralls.io/r/letsencrypt/lets-encrypt-preview
   :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/lets-encrypt-preview/status
   :target: https://quay.io/repository/letsencrypt/lets-encrypt-preview
   :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