filestash
filestash copied to clipboard
[Customize UI] Can I customize the User Interface of filestash using plugins or any other method.
I want to customize the User Interface of filestash. like I need to add my organization name in the landing page and also put a image in background of landing page.
Is it possible to do. If yes then what are the options available to accomplish it.
If not then, is there any opportunity that I can contribute to make this feature available in filestash?
I would also like to know how to do this. And is it possible to replace a language file once the app is installed?
Log in to the admin interface and use the Custom Css option. The contents of that config option is then available at /config.css
, and this file is loaded on every page.
If for some reason that isn't an option or if you also want to style the admin page, you can inject a stylesheet into the head of the document via reverse proxy. For example with Nginx:
# inject custom stylesheet
sub_filter </head>
'<link rel="stylesheet" href="/some/file.css"></head>';
sub_filter_once on;
NB: You must disable compression from the proxy for sub_filter
to work.