aboutsummaryrefslogtreecommitdiff
path: root/blog/2023-10-11-self-hosting-authelia.org
blob: 0a9830dd025127495a3bccacc33f9b11bed0281c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
+++
date = 2023-10-11T02:53:29+00:00
title = "Self-Hosting Authelia"
description = "A simple tutorial to get Authelia running on a self-hosted server."
+++

## Overview

[Authelia](https://www.authelia.com/) is an open-source authentication service 
that allows you to place a portal between end users on the internet and 
self-hosted services on your server.

You can require one factor (username+password) or two factor authentication for 
any such user before allowing them to access a specific service on your domain.

This guide will walk through a standard installation of Authelia for 
`example.com`, using `auth.example.com` as Authelia's authentication domain and 
`teddit.example.com` as the website we want to protect behind the authentication 
portal.

## Prerequisites

This guide assumes you have the following already set-up:

- A registered domain with DNS pointing to your server.
- A subdomain for Authelia (`auth.example.com`) and a subdomain to protect via 
Authelia (`app.example.com`).
- A working Nginx web server.
- Docker and docker-compose installed.

## Installation

This guide will walk through each installation step one-by-one, starting with 
the container and finishing by cleaning up external access via an Nginx reverse 
proxy.

### Docker-Compose

To start, create a directory for Authelia and create a `docker-compose.yml` 
file.

```sh
mkdir ~/authelia
nano ~/authelia/docker-compose.yml
```

Within this file, paste the following content. If you prefer a different local 
port, modify the port on the left side of the colon on the `9091:9091` line. Be 
sure to modify the `TZ` variable to your timezone.

```yml
version: '3.3'

services:
  authelia:
    image: authelia/authelia
    container_name: authelia
    volumes:
      - ./config:/config
    ports:
      - 9091:9091
    environment:
      - TZ=America/Chicago
```

Start the container with docker-compose:

```sh
sudo docker-compose up -d
```

After the first start, the container will automatically exit and require you to 
modify the app's configuration files before continuing. Read on to learn more.

### Authelia Configuration

To configure Authelia before we restart the container, we need to open the 
`config` directory and modify the files. Start by editing the 
`configuration.yml` file, where all of Authelia's settings are stored.

My personal preference is to copy the original configuration file to a backup 
file and edit a fresh copy.

```sh
sudo cp ~/authelia/config/configuration.yml ~/authelia/config/configuration.yml.bk
sudo nano ~/authelia/config/configuration.yml
```

Within the blank `configuration.yml` file, paste the following information. You 
will need to make quite a few updates, so be sure to read each line carefully 
and modify as necessary.

The major required changes are:

- Any instances of `example.com` should be replaced by your domain.
- `jwt_secret` - Use the `pwgen 40 1` command to generate a secret for yourself.
- `access_control` - Set the Authelia domain to bypass here, as well as any 
subdomains you want to protect.
- `session` > `secret` - Use the `pwgen 40 1` command to generate a secret for 
yourself.
- `regulation` - Set the variables here to restrict login attempts and bans.
- `storage` > `encryption_key` - Use the `pwgen 40 1` command to generate a 
secret for yourself.
- `smtp` - If you have access to an SMTP service, set up the information here to 
active outgoing emails.

```yml
# yamllint disable rule:comments-indentation
---
###############################################################################
#                           Authelia Configuration                            #
###############################################################################

theme: dark 
jwt_secret: aiS5iedaiv6eeVaideeLeich5roo6ohvaf3Vee1a # pwgen 40 1

default_redirection_url: https://example.com

server:
  host: 0.0.0.0
  port: 9091
  path: ""
  read_buffer_size: 4096
  write_buffer_size: 4096
  enable_pprof: false
  enable_expvars: false
  disable_healthcheck: false
  tls:
    key: ""
    certificate: ""

log:
  level: debug

totp:
  issuer: example.com
  period: 30
  skew: 1

authentication_backend:
  disable_reset_password: false
  refresh_interval: 5m
  file:
    path: /config/users_database.yml
    password:
      algorithm: argon2id
      iterations: 1
      key_length: 32
      salt_length: 16
      memory: 1024
      parallelism: 8

access_control:
  default_policy: deny
  rules:
    - domain:
        - "auth.example.com"
      policy: bypass
    - domain: "teddit.example.com"
      policy: one_factor

session:
  name: authelia_session
  secret: aiS5iedaiv6eeVaideeLeich5roo6ohvaf3Vee1a # pwgen 40 1
  expiration: 3600
  inactivity: 300
  domain: example.com

regulation:
  max_retries: 5
  find_time: 10m
  ban_time: 12h

storage:
  local:
    path: /config/db.sqlite3 
  encryption_key: aiS5iedaiv6eeVaideeLeich5roo6ohvaf3Vee1a # pwgen 40 1

notifier:
  disable_startup_check: true
  smtp:
    username: user@example.com
    password: password
    host: smtp.example.com
    port: 465
    sender: user@example.com
    identifier: example.com
    subject: "[Authelia] {title}"
    startup_check_address: user@example.com
    disable_require_tls: false
    disable_html_emails: true
    tls:
      skip_verify: false
      minimum_version: TLS1.2
...
```

### Authelia Users

Next, create the users file for authentication.

```sh
sudo nano ~/authelia/config/users_database.yml
```

Within the file, you will need to create an entry for each user that needs 
access to Authelia. The `my_username` entry will be the username used on the 
login page.

To generate the password, go to [Argon2 Hash Generator](https://argon2.online), 
generate a random salt, and make sure the rest of the settings match the 
`authentication_backend` section of `configuration.yml` file.

```yml
users:
  my_username:
    displayname: "My User"
    # Generated at https://argon2.online/ -- match the settings in 
    # the `authentication_backend` section of configuration.yml
    password: "" 
    email: email@example.com
    groups:
      - admins
      - dev
```

Once the app is configured, restart the container from scratch.

```sh
cd ~/authelia
sudo docker-compose down && sudo docker-compose up -d
```

### Nginx: Authelia Domain

Once the container is running and configured, the final step is to configure 
external access to the server via Nginx reverse proxy.

Start by creating the Authelia domain.

```sh
sudo nano /etc/nginx/sites-available/auth
```

Within this file, paste the following information and be sure to update 
`example.com` to your domain. Make sure the `$upstream_authelia` variable 
matches the location of your Authelia container.

```conf
server {
	if ($host ~ ^[^.]+\.example\.com$) {
		return 301 https://$host$request_uri;
	}

	listen [::]:80;
	listen 80;
	server_name auth.example.com;
	return 404;
}

server {
	listen [::]:443 ssl http2;
	listen 443 ssl http2;
	server_name auth.example.com;
	access_log  /var/log/nginx/auth.access.log;
	error_log   /var/log/nginx/auth.error.log;

	ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
	include /etc/letsencrypt/options-ssl-nginx.conf;
	ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;

	location / {
		set $upstream_authelia http://127.0.0.1:9091;
		proxy_pass $upstream_authelia;
		client_body_buffer_size 128k;

		proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;

		send_timeout 5m;
		proxy_read_timeout 360;
		proxy_send_timeout 360;
		proxy_connect_timeout 360;

		proxy_set_header Host $host;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-Proto $scheme;
		proxy_set_header X-Forwarded-Host $http_host;
		proxy_set_header X-Forwarded-Uri $request_uri;
		proxy_set_header X-Forwarded-Ssl on;
		proxy_redirect  http://  $scheme://;
		proxy_http_version 1.1;
		proxy_set_header Connection "";
		proxy_cache_bypass $cookie_session;
		proxy_no_cache $cookie_session;
		proxy_buffers 64 256k;
	}

}
```

Next, symlink the file and restart Nginx. If there are errors, be sure to 
resolve those before moving on.

```sh
sudo ln -s /etc/nginx/sites-available/auth /etc/nginx/sites-enabled/auth
sudo systemctl restart nginx.service
```

### Nginx: Protected Domain(s)

Now that Authelia is accessible externally, you need to configure the domain you 
intend to protect with Authelia. In this example, I'm protecting 
`teddit.example.com`.

Similar to the process above, paste the content and update the relevant 
variables.

```sh
sudo nano /etc/nginx/sites-available/teddit
```

```conf
server {
	if ($host ~ ^[^.]+\.example\.com$) {
		return 301 https://$host$request_uri;
	}

	listen [::]:80;
	listen 80;
	server_name teddit.example.com;
	return 404;
}

server {
	listen [::]:443 ssl http2;
	listen 443 ssl http2;
	server_name teddit.example.com;
	access_log  /var/log/nginx/teddit.access.log;
	error_log   /var/log/nginx/teddit.error.log;

	add_header X-Content-Type-Options "nosniff";
	add_header X-XSS-Protection "1; mode=block";
	add_header X-Frame-Options "DENY";
	add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
	add_header Referrer-Policy "no-referrer";

	ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
	include /etc/letsencrypt/options-ssl-nginx.conf;
	ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;

	location /authelia {
		internal;
		set $upstream_authelia http://127.0.0.1:9091/api/verify;
		proxy_pass_request_body off;
		proxy_pass $upstream_authelia;
		proxy_set_header Content-Length "";

		proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
		client_body_buffer_size 128k;
		proxy_set_header Host $host;
		proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $remote_addr;
		proxy_set_header X-Forwarded-Proto $scheme;
		proxy_set_header X-Forwarded-Host $http_host;
		proxy_set_header X-Forwarded-Uri $request_uri;
		proxy_set_header X-Forwarded-Ssl on;
		proxy_redirect  http://  $scheme://;
		proxy_http_version 1.1;
		proxy_set_header Connection "";
		proxy_cache_bypass $cookie_session;
		proxy_no_cache $cookie_session;
		proxy_buffers 4 32k;

		send_timeout 5m;
		proxy_read_timeout 240;
		proxy_send_timeout 240;
		proxy_connect_timeout 240;
	}

	location / {
		set $upstream_teddit http://127.0.0.1:8686;
		proxy_pass $upstream_teddit;

		auth_request /authelia;
		auth_request_set $target_url https://$http_host$request_uri;
		auth_request_set $user $upstream_http_remote_user;
		auth_request_set $email $upstream_http_remote_email;
		auth_request_set $groups $upstream_http_remote_groups;
		proxy_set_header Remote-User $user;
		proxy_set_header Remote-Email $email;
		proxy_set_header Remote-Groups $groups;

		error_page 401 =302 https://auth.example.com/?rd=$target_url;

		client_body_buffer_size 128k;

		proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;

		send_timeout 5m;
		proxy_read_timeout 360;
		proxy_send_timeout 360;
		proxy_connect_timeout 360;

		proxy_set_header Host $host;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection upgrade;
		proxy_set_header Accept-Encoding gzip;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
		proxy_set_header X-Forwarded-Proto $scheme;
		proxy_set_header X-Forwarded-Host $http_host;
		proxy_set_header X-Forwarded-Uri $request_uri;
		proxy_set_header X-Forwarded-Ssl on;
		proxy_redirect  http://  $scheme://;
		proxy_http_version 1.1;
		proxy_set_header Connection "";
		proxy_cache_bypass $cookie_session;
		proxy_no_cache $cookie_session;
		proxy_buffers 64 256k;
	}
}
```

Same as before, symlink the file and restart Nginx.

```sh
sudo ln -s /etc/nginx/sites-available/teddit /etc/nginx/sites-enabled/teddit
sudo systemctl restart nginx.service
```

## Results

When visiting the protected domain, you will now be redirected to your 
authentication domain and presented with the Authelia login portal.

![Authelia Portal](https://img.cleberg.net/blog/20231010-authelia/authelia_portal.png "Authelia Portal")

Once you've successfully authenticated, you can visit your authentication domain 
directly and see that you're currently authenticated to any domain protected by 
Authelia.

![Authelia Success](https://img.cleberg.net/blog/20231010-authelia/authelia_success.png "Authelia Success")