Fix http acme challange for status.nekover.se
This commit is contained in:
parent
218ab2e710
commit
733f09d7af
|
@ -80,11 +80,6 @@
|
||||||
proto = "tcp";
|
proto = "tcp";
|
||||||
sourcePort = 25;
|
sourcePort = 25;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
destination = "172.18.50.2:80";
|
|
||||||
proto = "tcp";
|
|
||||||
sourcePort = 80;
|
|
||||||
}
|
|
||||||
{
|
{
|
||||||
destination = "172.18.50.2:465";
|
destination = "172.18.50.2:465";
|
||||||
proto = "tcp";
|
proto = "tcp";
|
||||||
|
|
|
@ -2,23 +2,35 @@
|
||||||
{
|
{
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
virtualHosts."status.nekover.se" = {
|
virtualHosts = {
|
||||||
forceSSL = true;
|
"mail-1.grzb.de" = {
|
||||||
enableACME = true;
|
listen = [{
|
||||||
listen = [
|
|
||||||
{
|
|
||||||
addr = "0.0.0.0";
|
addr = "0.0.0.0";
|
||||||
port = 80;
|
port = 80;
|
||||||
}
|
}];
|
||||||
{
|
locations."/" = {
|
||||||
addr = "0.0.0.0";
|
# proxy port 80 to mail server nginx for acme http challange
|
||||||
port = 443;
|
proxyPass = "http://172.18.50.2:80";
|
||||||
ssl = true;
|
};
|
||||||
}
|
};
|
||||||
];
|
"status.nekover.se" = {
|
||||||
locations."/" = {
|
forceSSL = true;
|
||||||
proxyPass = "http://localhost:3001";
|
enableACME = true;
|
||||||
proxyWebsockets = true;
|
listen = [
|
||||||
|
{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 80;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://localhost:3001";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue