port forwarding in gluetun container
This commit is contained in:
parent
acf5706bf6
commit
46cc81b5e9
|
@ -1,5 +1,4 @@
|
||||||
{config, ...}:
|
{config, ...}: let
|
||||||
let
|
|
||||||
openVpnPwd = config.sops.secrets."software/proton/openvpn_password".path;
|
openVpnPwd = config.sops.secrets."software/proton/openvpn_password".path;
|
||||||
openVpnUser = config.sops.secrets."software/proton/openvpn_user".path;
|
openVpnUser = config.sops.secrets."software/proton/openvpn_user".path;
|
||||||
in {
|
in {
|
||||||
|
@ -8,6 +7,18 @@ in {
|
||||||
"software/proton/openvpn_user" = {};
|
"software/proton/openvpn_user" = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
firewall = {
|
||||||
|
enable = true;
|
||||||
|
allowedTCPPorts = [
|
||||||
|
6887
|
||||||
|
];
|
||||||
|
allowedUDPPorts = [
|
||||||
|
6887
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
virtualisation.arion = {
|
virtualisation.arion = {
|
||||||
backend = "podman-socket";
|
backend = "podman-socket";
|
||||||
projects.arrstack = {
|
projects.arrstack = {
|
||||||
|
@ -31,6 +42,7 @@ in {
|
||||||
VPN_SERVICE_PROVIDER = "protonvpn";
|
VPN_SERVICE_PROVIDER = "protonvpn";
|
||||||
VPN_TYPE = "openvpn";
|
VPN_TYPE = "openvpn";
|
||||||
SERVER_COUNTRIES = "Switzerland";
|
SERVER_COUNTRIES = "Switzerland";
|
||||||
|
VPN_PORT_FORWARDING = "on";
|
||||||
};
|
};
|
||||||
devices = ["/dev/net/tun:/dev/net/tun"];
|
devices = ["/dev/net/tun:/dev/net/tun"];
|
||||||
};
|
};
|
||||||
|
@ -52,7 +64,6 @@ in {
|
||||||
};
|
};
|
||||||
network_mode = "service:gluetun";
|
network_mode = "service:gluetun";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue