We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm trying your indexer and it works great, there is only a quirck when:
The folders are correctly loaded and navigate fine only the url href is not correctly written:
/p/
I hardcoded the prefix now myself when row.type != "directory" here: https://github.com/kstep/nginx-autoindex-js/blob/master/index.html#L58
row.type
{{:: row.type == 'directory' ? '#' : '/p/' }}
I think the prefix could be loaded from the config.json file even when full host is set.
The text was updated successfully, but these errors were encountered:
... or in a better way :
https://github.com/kstep/nginx-autoindex-js/blob/master/index.html#L58 {{:: row.type == 'directory' ? '#' : index.config.base_index_url }}
{{:: row.type == 'directory' ? '#' : index.config.base_index_url }}
Sorry, something went wrong.
No branches or pull requests
Hi,
I'm trying your indexer and it works great, there is only a quirck when:
The folders are correctly loaded and navigate fine only the url href is not correctly written:
/p/
: `/p/dir1/{file}I hardcoded the prefix now myself when
row.type
!= "directory" here:https://github.com/kstep/nginx-autoindex-js/blob/master/index.html#L58
I think the prefix could be loaded from the config.json file even when full host is set.
The text was updated successfully, but these errors were encountered: