really change to str
This commit is contained in:
parent
737d427e93
commit
1833a5e21f
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@
|
||||||
services.nginx.virtualHosts.${cfg.domain} = {
|
services.nginx.virtualHosts.${cfg.domain} = {
|
||||||
forceSSL = cfg.ssl;
|
forceSSL = cfg.ssl;
|
||||||
enableACME = cfg.ssl;
|
enableACME = cfg.ssl;
|
||||||
locations."/".proxyPass = "http://127.0.0.1:${cfg.phx.port}";
|
locations."/".proxyPass = "http://127.0.0.1:${toString cfg.phx.port}";
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services."zoeyscomputer-phx" = let
|
systemd.services."zoeyscomputer-phx" = let
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
RELEASE_TMP = working_directory;
|
RELEASE_TMP = working_directory;
|
||||||
# can be generated in an elixir console with
|
# can be generated in an elixir console with
|
||||||
# Base.encode32(:crypto.strong_rand_bytes(32))
|
# Base.encode32(:crypto.strong_rand_bytes(32))
|
||||||
PORT = "${cfg.phx.port}";
|
PORT = "${toString cfg.phx.port}";
|
||||||
PHX_HOST = cfg.domain;
|
PHX_HOST = cfg.domain;
|
||||||
PHX_SERVER = cfg.phx.enableServer;
|
PHX_SERVER = cfg.phx.enableServer;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue