fix: enable SSL for keycloak
This commit is contained in:
parent
8e07034aad
commit
8da5f0b48a
|
@ -12,17 +12,22 @@
|
||||||
#owner = "keycloak";
|
#owner = "keycloak";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."auth.pub.solar".locations = {
|
services.nginx.virtualHosts."auth.pub.solar" = {
|
||||||
"= /" = {
|
enableACME = true;
|
||||||
extraConfig = ''
|
forceSSL = true;
|
||||||
return 302 /realms/pub.solar/account;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
"/" = {
|
locations = {
|
||||||
extraConfig = ''
|
"= /" = {
|
||||||
proxy_pass http://localhost:8080;
|
extraConfig = ''
|
||||||
'';
|
return 302 /realms/pub.solar/account;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
"/" = {
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_pass http://localhost:8080;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue