Fix index.html fallback
If an index.html was added to a root of a directory it would not show, the fallback options do not work. This fixes that issue.
This commit is contained in:
parent
ebca910786
commit
deac0eaf44
src/nginxconfig/generators/conf
|
@ -235,7 +235,12 @@ export default (domain, domains, global, ipPortPairs) => {
|
||||||
// index.php
|
// index.php
|
||||||
if (domain.routing.index.computed === 'index.php') {
|
if (domain.routing.index.computed === 'index.php') {
|
||||||
serverConfig.push(['# index.php', '']);
|
serverConfig.push(['# index.php', '']);
|
||||||
serverConfig.push(['index', 'index.php']);
|
serverConfig.push(['index', 'index.php' + domain.routing.fallbackHtml.computed ? ' index.html' : '']);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (domain.routing.index.computed === 'index.html') {
|
||||||
|
serverConfig.push(['# index.php', '']);
|
||||||
|
serverConfig.push(['index', 'index.html' + domain.routing.fallbackPhp.computed ? ' index.php' : '']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fallback index.html or index.php
|
// Fallback index.html or index.php
|
||||||
|
|
Loading…
Reference in New Issue