Update dependencies (#462)

This commit is contained in:
Matt Cowley
2024-01-23 20:19:02 +00:00
committed by GitHub
parent a40ac26eaa
commit 91c553a10f
4 changed files with 5269 additions and 5692 deletions

View File

@@ -303,8 +303,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed
? 'html'
: domain.routing.fallbackPhp.computed
? 'php'
: ''
? 'php'
: ''
} fallback`,
'',
]);
@@ -315,8 +315,8 @@ export default (domain, domains, global, ipPortPairs) => {
domain.routing.fallbackHtml.computed
? 'html'
: domain.routing.fallbackPhp.computed
? 'php?$query_string'
: ''
? 'php?$query_string'
: ''
}`,
},
]);

View File

@@ -113,9 +113,8 @@ export default (domains, global) => {
domains.map((domain, index) => [domain, index]).filter((d) => d[0] !== null),
global,
);
files[
'nginxconfig.txt'
] = `${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
files['nginxconfig.txt'] =
`${window.location.protocol}//${window.location.host}${window.location.pathname}${query}`;
return files;
};