Paperless: Difference between revisions
Inital page |
Add categories |
||
Line 7: | Line 7: | ||
passwordFile = "/etc/paperless-admin-pass"; | passwordFile = "/etc/paperless-admin-pass"; | ||
};}}After applying the configuration you can access the instance via http://localhost:28981 and login with username <code>admin</code> and password <code>admin</code>. | };}}After applying the configuration you can access the instance via http://localhost:28981 and login with username <code>admin</code> and password <code>admin</code>. | ||
[[Category:Server]] | |||
[[Category:Web Applications]] |
Revision as of 13:17, 3 June 2024
Paperless-ngx is a community-supported open-source document management system that transforms your physical documents into a searchable online archive, allowing you to reduce paper clutter.
Setup
The following example configuration will enable Paperless locally
/etc/nixos/configuration.nix
environment.etc."paperless-admin-pass".text = "admin";
services.paperless = {
enable = true;
passwordFile = "/etc/paperless-admin-pass";
};
After applying the configuration you can access the instance via http://localhost:28981 and login with username admin
and password admin
.