add refinery service (docker) and reverse proxy
This commit is contained in:
parent
79ff2ec2a7
commit
489bb683e0
1 changed files with 27 additions and 0 deletions
|
|
@ -295,6 +295,21 @@ let secrets = import ../secrets.nix; in
|
||||||
proxy_buffering off;
|
proxy_buffering off;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
locations."/refinery/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8888/";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
extraConfig = ''
|
||||||
|
#rewrite /refinery/(.*) /$1 break;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
locations."/xtext-service" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8888/xtext-service";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
locations."/api/v1/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8888/api/v1/";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
locations."/git/" = {
|
locations."/git/" = {
|
||||||
basicAuth = {};
|
basicAuth = {};
|
||||||
proxyPass = "http://127.0.0.1:27365/";
|
proxyPass = "http://127.0.0.1:27365/";
|
||||||
|
|
@ -378,6 +393,18 @@ let secrets = import ../secrets.nix; in
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
virtualisation.oci-containers.containers = {
|
||||||
|
refinery = {
|
||||||
|
image = "ghcr.io/graphs4value/refinery:latest";
|
||||||
|
ports = [ "127.0.0.1:8888:8888" ];
|
||||||
|
environment = {
|
||||||
|
REFINERY_PUBLIC_HOST = "deemz.org";
|
||||||
|
#REFINERY_PUBLIC_PORT = "";
|
||||||
|
REFINERY_MODEL_GENERATION_TIMEOUT_SEC = "60";
|
||||||
|
REFINERY_MODEL_GENERATION_THREAD_COUNT = "10";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue