Move confs into own dir

This commit is contained in:
MattIPv4
2020-05-20 17:22:21 +01:00
parent 79a49ce40d
commit 6a70c53107
12 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
export default global => {
const config = {};
config['# ACME-challenge'] = '';
config['location ^~ /.well-known/acme-challenge/'] = {
root: global.https.letsEncryptRoot.computed.replace(/\/+$/, ''),
};
// Done!
return config;
};