again
This commit is contained in:
parent
2da3b941a5
commit
13e0ad9b34
|
@ -132,14 +132,22 @@ in {
|
||||||
|
|
||||||
services.nginx.virtualHosts = {
|
services.nginx.virtualHosts = {
|
||||||
"pages.sako.lol" = {
|
"pages.sako.lol" = {
|
||||||
forceSSL = true;
|
listen = [{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}];
|
||||||
locations."/" = { proxyPass = "http://localhost:4563"; };
|
locations."/" = { proxyPass = "http://localhost:4563"; };
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
ssl_preread on;
|
ssl_preread on;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"*.pages.sako.lol" = {
|
"*.pages.sako.lol" = {
|
||||||
forceSSL = true;
|
listen = [{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}];
|
||||||
locations."/" = { proxyPass = "http://localhost:4563"; };
|
locations."/" = { proxyPass = "http://localhost:4563"; };
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
ssl_preread on;
|
ssl_preread on;
|
||||||
|
|
Loading…
Reference in a new issue