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:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
- auth.pyrocufflink.blue
|
- auth.pyrocufflink.blue
|
||||||
|
- auth.pyrocufflink.net
|
||||||
rules:
|
rules:
|
||||||
- host: auth.pyrocufflink.blue
|
- host: auth.pyrocufflink.blue
|
||||||
http:
|
http: &http
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
|
@ -138,4 +139,5 @@ spec:
|
||||||
name: authelia
|
name: authelia
|
||||||
port:
|
port:
|
||||||
name: http
|
name: http
|
||||||
|
- host: auth.pyrocufflink.net
|
||||||
|
http: *http
|
||||||
|
|
|
@ -189,6 +189,8 @@ session:
|
||||||
cookies:
|
cookies:
|
||||||
- domain: pyrocufflink.blue
|
- domain: pyrocufflink.blue
|
||||||
authelia_url: 'https://auth.pyrocufflink.blue'
|
authelia_url: 'https://auth.pyrocufflink.blue'
|
||||||
|
- domain: pyrocufflink.net
|
||||||
|
authelia_url: 'https://auth.pyrocufflink.net'
|
||||||
|
|
||||||
server:
|
server:
|
||||||
buffers:
|
buffers:
|
||||||
|
|
Loading…
Reference in New Issue