2018-11-16 07:39:57 +00:00
|
|
|
# Deployment for Production
|
|
|
|
|
|
|
|
**Authelia** can be deployed on bare metal or on Kubernetes with two
|
2019-11-03 12:07:02 +00:00
|
|
|
different kind of artifacts: the distributable version (binary and public_html)
|
|
|
|
or a Docker image.
|
2018-11-16 07:39:57 +00:00
|
|
|
|
|
|
|
**NOTE:** If not done already, we highly recommend you first follow the
|
|
|
|
[Getting Started] documentation.
|
|
|
|
|
|
|
|
## On Bare Metal
|
|
|
|
|
|
|
|
**Authelia** has been designed to be a proxy companion handling the
|
|
|
|
authentication and authorization requests for your entire infrastructure.
|
|
|
|
|
2019-11-03 12:07:02 +00:00
|
|
|
As **Authelia** will be key to your architecture, it requires several
|
|
|
|
components to make it highly-available. Deploying it in production means having
|
|
|
|
an LDAP server for storing the information about the users, a Redis cache to
|
2019-11-16 10:38:21 +00:00
|
|
|
store the user sessions in a distributed manner, a SQL server like MariaDB to
|
|
|
|
persist user configurations and one or more nginx reverse proxies configured to
|
|
|
|
be used with Authelia. With such a setup **Authelia** can easily be scaled to
|
|
|
|
multiple instances to evenly handle the traffic.
|
2018-11-16 07:39:57 +00:00
|
|
|
|
2019-11-03 12:07:02 +00:00
|
|
|
**NOTE:** If you don't have all those components, don't worry, there is a way to
|
|
|
|
deploy **Authelia** with only nginx. This is described in [Deployment for Devs].
|
2018-11-16 07:39:57 +00:00
|
|
|
|
|
|
|
Here are the available steps to deploy **Authelia** given
|
|
|
|
the configuration file is **/path/to/your/config.yml**. Note that you can
|
|
|
|
create your own configuration file from [config.template.yml] located at
|
|
|
|
the root of the repo.
|
|
|
|
|
2019-11-03 12:07:02 +00:00
|
|
|
### Deploy with the distributable version
|
2018-11-16 07:39:57 +00:00
|
|
|
|
2019-11-03 12:07:02 +00:00
|
|
|
# Build it if not done already
|
|
|
|
authelia-scripts build
|
|
|
|
|
|
|
|
PUBLIC_DIR=./dist/public_html authelia -config /path/to/your/config.yml
|
2018-11-16 07:39:57 +00:00
|
|
|
|
|
|
|
### Deploy With Docker
|
|
|
|
|
2019-10-30 09:05:42 +00:00
|
|
|
docker run -v /path/to/your/config.yml:/etc/authelia/config.yml -e TZ=Europe/Paris clems4ever/authelia
|
2018-11-16 07:39:57 +00:00
|
|
|
|
2019-04-17 21:02:10 +00:00
|
|
|
|
2018-11-16 07:39:57 +00:00
|
|
|
## On top of Kubernetes
|
|
|
|
|
2019-04-17 21:02:10 +00:00
|
|
|
<img src="../images/kubernetes.logo.png" width="50" style="padding-right: 10px" align="left">
|
2018-11-16 07:39:57 +00:00
|
|
|
|
2019-03-03 22:51:52 +00:00
|
|
|
**Authelia** can also be installed on top of [Kubernetes] using
|
2019-03-02 23:25:40 +00:00
|
|
|
[nginx ingress controller](https://github.com/kubernetes/ingress-nginx).
|
2018-11-16 07:39:57 +00:00
|
|
|
|
|
|
|
Please refer to the following [documentation](../example/kube/README.md)
|
|
|
|
for more information.
|
|
|
|
|
|
|
|
## FAQ
|
|
|
|
|
|
|
|
### Why is this not automated?
|
|
|
|
|
|
|
|
Ansible would be a very good candidate to automate the installation of such
|
|
|
|
an infrastructure on bare metal. We would be more than happy to review any PR on that matter.
|
|
|
|
|
2019-11-03 12:07:02 +00:00
|
|
|
Regarding Kubernetes, the right way to go would be to write a Helm recipe.
|
2019-03-02 23:25:40 +00:00
|
|
|
Again, we would be glad to review any PR implementing this.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[config.template.yml]: ../config.template.yml
|
|
|
|
[Getting Started]: ./getting-started.md
|
|
|
|
[Deployment for Devs]: ./deployment-dev.md
|
|
|
|
[Kubernetes]: https://kubernetes.io/
|