ma workadventure: useACMEHost
This commit is contained in:
parent
fb85949a67
commit
a05435c26a
@ -60,7 +60,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.oci-containers.backend = "docker";
|
virtualisation.oci-containers.backend = "docker";
|
||||||
|
security.acme.certs."${domain}".extraDomainNames = [ apiURL frontURL pusherURL uploaderURL ];
|
||||||
services.nginx.virtualHosts."${domain}" = {
|
services.nginx.virtualHosts."${domain}" = {
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
@ -82,7 +82,7 @@ in {
|
|||||||
extraOptions = [ "--network=workadventure" ];
|
extraOptions = [ "--network=workadventure" ];
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."${frontURL}" = {
|
services.nginx.virtualHosts."${frontURL}" = {
|
||||||
enableACME = true;
|
useACMEHost = domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = { proxyPass = "http://127.0.0.1:${toString frontPort}"; };
|
locations."/" = { proxyPass = "http://127.0.0.1:${toString frontPort}"; };
|
||||||
};
|
};
|
||||||
@ -99,7 +99,7 @@ in {
|
|||||||
extraOptions = [ "--network=workadventure" ];
|
extraOptions = [ "--network=workadventure" ];
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."${pusherURL}" = {
|
services.nginx.virtualHosts."${pusherURL}" = {
|
||||||
enableACME = true;
|
useACMEHost = domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString pusherPort}";
|
proxyPass = "http://127.0.0.1:${toString pusherPort}";
|
||||||
@ -123,7 +123,7 @@ in {
|
|||||||
extraOptions = [ "--network=workadventure" ];
|
extraOptions = [ "--network=workadventure" ];
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."${apiURL}" = {
|
services.nginx.virtualHosts."${apiURL}" = {
|
||||||
enableACME = true;
|
useACMEHost = domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = { proxyPass = "http://127.0.0.1:${toString apiPort}"; };
|
locations."/" = { proxyPass = "http://127.0.0.1:${toString apiPort}"; };
|
||||||
};
|
};
|
||||||
@ -134,7 +134,7 @@ in {
|
|||||||
extraOptions = [ "--network=workadventure" ];
|
extraOptions = [ "--network=workadventure" ];
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."${uploaderURL}" = {
|
services.nginx.virtualHosts."${uploaderURL}" = {
|
||||||
enableACME = true;
|
useACMEHost = domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString uploaderPort}";
|
proxyPass = "http://127.0.0.1:${toString uploaderPort}";
|
||||||
|
Loading…
Reference in New Issue
Block a user