Skip to content
Snippets Groups Projects
Commit 722f75ed authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Merge branch 'make-payments-default-to-404' into 'develop'

Make payment server answer with a 404 by default

See merge request !186
parents a71aa964 72317aba
No related branches found
No related tags found
2 merge requests!228merge develop into production,!186Make payment server answer with a 404 by default
Pipeline #1183 failed
...@@ -224,6 +224,12 @@ in { ...@@ -224,6 +224,12 @@ in {
''; '';
proxyPass = "http://127.0.0.1:${internalHttpPort}"; proxyPass = "http://127.0.0.1:${internalHttpPort}";
}; };
locations."/" = {
# Return a 404 error for any paths not specified above.
extraConfig = ''
return 404;
'';
};
}; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment