rt: fix API security problem

pull/20/head
Sebastien Bourdeauducq 2021-08-11 10:54:12 +08:00
parent a385c2db4b
commit d9536ff5db
1 changed files with 14 additions and 4 deletions

View File

@ -689,10 +689,20 @@ in
"rt.m-labs.hk" = { "rt.m-labs.hk" = {
forceSSL = true; forceSSL = true;
useACMEHost = "nixbld.m-labs.hk"; useACMEHost = "nixbld.m-labs.hk";
locations."/".proxyPass = "http://127.0.0.1:4201"; locations."/" = {
extraConfig = '' proxyPass = "http://127.0.0.1:4201";
client_max_body_size 100M; extraConfig = ''
''; client_max_body_size 100M;
'';
};
locations."/REST/1.0/NoAuth" = {
proxyPass = "http://127.0.0.1:4201";
extraConfig = ''
client_max_body_size 100M;
allow 127.0.0.1;
deny all;
'';
};
}; };
"nmigen.org" = { "nmigen.org" = {
addSSL = true; addSSL = true;