Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
29 lines
624 B
Nix
29 lines
624 B
Nix
# SPDX-FileCopyrightText: 2023 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
services.photoprism = {
|
|
enable = true;
|
|
originalsPath = "/data/cold/photoprism";
|
|
settings = {
|
|
PHOTOPRISM_SITE_URL = "https://photoprism.sbruder.de/";
|
|
};
|
|
};
|
|
|
|
sbruder.restic.system.extraExcludes = [
|
|
"/var/lib/private/photoprism"
|
|
];
|
|
|
|
services.nginx.virtualHosts."photoprism.sbruder.de" = {
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://127.0.0.1:${toString config.services.photoprism.port}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
}
|