filestash icon indicating copy to clipboard operation
filestash copied to clipboard

[Customize UI] Can I customize the User Interface of filestash using plugins or any other method.

Open believerHSP opened this issue 1 year ago • 2 comments

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?

believerHSP avatar Jan 08 '24 06:01 believerHSP

I would also like to know how to do this. And is it possible to replace a language file once the app is installed?

Marduc666 avatar Jan 29 '24 07:01 Marduc666

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.

sevmonster avatar Feb 07 '24 17:02 sevmonster