[MISC] Fix dev workflow for Standalone suite (#811)
Since the TLS change was implemented, the Standalone suite attempts to reach authelia-frontend:3001. This only works for the dist/CI based workflow as nginx is run in place of node and the respective ports are exposed. This change will attempt authelia-frontend:3001 initially for the Standalone suite but given the server is unreachable in the dev workflow, it will mark authelia-frontend:3001 as unavailable for 180s and route all requests to authelia-frontend:3000 instead.pull/831/head
parent
670eeb2879
commit
b692aa73d3
|
@ -8,12 +8,17 @@ events {
|
|||
}
|
||||
|
||||
http {
|
||||
upstream authelia-frontend {
|
||||
server authelia-frontend:3001 fail_timeout=180s;
|
||||
server authelia-frontend:3000 backup;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8080 ssl;
|
||||
server_name login.example.com;
|
||||
|
||||
resolver 127.0.0.11 ipv6=off;
|
||||
set $frontend_endpoint http://authelia-frontend:3001;
|
||||
set $frontend_endpoint http://authelia-frontend;
|
||||
set $backend_endpoint https://authelia-backend:9091;
|
||||
|
||||
ssl_certificate /etc/ssl/server.cert;
|
||||
|
|
Loading…
Reference in New Issue