Vpn : Enable forwards.
This commit is contained in:
parent
03500126f8
commit
5daa06db63
|
@ -26,8 +26,8 @@ in {
|
||||||
# protocol = "tcp";
|
# protocol = "tcp";
|
||||||
# } {
|
# } {
|
||||||
{
|
{
|
||||||
containerPort = 443;
|
containerPort = cfg.port;
|
||||||
hostPort = 443;
|
hostPort = cfg.port;
|
||||||
protocol = "tcp";
|
protocol = "tcp";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,6 +11,13 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
containers.vpn = container.mkContainer cfg {
|
containers.vpn = container.mkContainer cfg {
|
||||||
|
forwardPorts = [
|
||||||
|
{
|
||||||
|
containerPort = cfg.port;
|
||||||
|
hostPort = cfg.port;
|
||||||
|
protocol = "udp";
|
||||||
|
}
|
||||||
|
];
|
||||||
bindMounts = {
|
bindMounts = {
|
||||||
"/var/lib/wireguard" = {
|
"/var/lib/wireguard" = {
|
||||||
hostPath = "${cfg.storage}/data";
|
hostPath = "${cfg.storage}/data";
|
||||||
|
|
|
@ -179,6 +179,7 @@
|
||||||
};
|
};
|
||||||
proxy = {
|
proxy = {
|
||||||
address = "10.1.0.2";
|
address = "10.1.0.2";
|
||||||
|
port = 443;
|
||||||
storage = "${storage}/proxy";
|
storage = "${storage}/proxy";
|
||||||
};
|
};
|
||||||
postgres = {
|
postgres = {
|
||||||
|
|
Loading…
Reference in a new issue