summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-03-17 20:04:50 +0100
committermakefu <github@syntax-fehler.de>2021-03-17 20:04:50 +0100
commit7d262220b81686cfe082642d08cb1ddea021fef8 (patch)
treef44627947cf7141aee934cc7e0c1cde7abe58cfb /makefu
parent4f30fddc4aa02289d38b00de9bb7b36ce290a8db (diff)
ma storj: expose web-ui
Diffstat (limited to 'makefu')
-rw-r--r--makefu/2configs/storj/client.nix20
1 files changed, 19 insertions, 1 deletions
diff --git a/makefu/2configs/storj/client.nix b/makefu/2configs/storj/client.nix
index e37e2ce2..5e675340 100644
--- a/makefu/2configs/storj/client.nix
+++ b/makefu/2configs/storj/client.nix
@@ -1,4 +1,8 @@
{ lib, ... }:
+let
+ port = "14002";
+internal-ip = "192.168.1.11";
+in
{
networking.firewall.allowedTCPPorts = [ 28967 ];
virtualisation.oci-containers.containers.storj-storagenode = {
@@ -6,7 +10,7 @@
ports = [
# TODO: omo ip
"0.0.0.0:28967:28967"
- "127.0.0.1:14002:14002"
+ "127.0.0.1:${port}:${port}"
];
environment = {
# SETUP = "true"; # must be run only once ...
@@ -24,4 +28,18 @@
StandardOutput = lib.mkForce "journal";
StandardError = lib.mkForce "journal";
};
+
+ services.nginx.virtualHosts."storj" = {
+ serverAliases = [
+ "storj.lan"
+ ];
+
+ locations."/".proxyPass = "http://localhost:${port}";
+ locations."/".proxyWebsockets = true;
+ extraConfig = ''
+ if ( $server_addr != "${internal-ip}" ) {
+ return 403;
+ }
+ '';
+ };
}