authelia: Allow from pyrocufflink.net
In order to allow access to Authelia from outside the LAN, it needs to be able to handle the _pyrocufflink.net_ domain in addition to _pyrocufflink.blue_. Originally, this was not possible, as Authelia only supported a single cookie/domain. Now that it supports multiple cookies, we can expose both domains. The main reason for doing this now is use Authelia's password reset capability for Mom, since she didn't have a password for her Nextcloud account that she's just begun using.
parent
e4f3e8254e
commit
faba248b1b
|
@ -127,9 +127,10 @@ spec:
|
|||
tls:
|
||||
- hosts:
|
||||
- auth.pyrocufflink.blue
|
||||
- auth.pyrocufflink.net
|
||||
rules:
|
||||
- host: auth.pyrocufflink.blue
|
||||
http:
|
||||
http: &http
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
|
@ -138,4 +139,5 @@ spec:
|
|||
name: authelia
|
||||
port:
|
||||
name: http
|
||||
|
||||
- host: auth.pyrocufflink.net
|
||||
http: *http
|
||||
|
|
|
@ -189,6 +189,8 @@ session:
|
|||
cookies:
|
||||
- domain: pyrocufflink.blue
|
||||
authelia_url: 'https://auth.pyrocufflink.blue'
|
||||
- domain: pyrocufflink.net
|
||||
authelia_url: 'https://auth.pyrocufflink.net'
|
||||
|
||||
server:
|
||||
buffers:
|
||||
|
|
Loading…
Reference in New Issue