Compare commits

..

No commits in common. "9631758da008fdd3b1ec980fef58593d368a7ce4" and "4a9d351319fd9334f19f8e2db0419ac131309e4c" have entirely different histories.

3 changed files with 5 additions and 33 deletions

View file

@ -3,9 +3,9 @@ name: Build all NixOS Configurations
on:
push:
branches:
- "**"
- '**'
schedule:
- cron: "30 2 * * *" # not to frequent, GitHub only allows a few pulls per hour
- cron: '30 2 * * *' # not to frequent, GitHub only allows a few pulls per hour
jobs:
nix build:

View file

@ -8,16 +8,15 @@
../../components
../../modules
./service-forgejo-runner.nix
./service-forgejo.nix
./service-forgejo-runner.nix
./service-hedgedoc.nix
./service-nix-cache.nix
./service-photoprism.nix
#./service-surrealdb.nix # not really needed at the moment
./service-taskserver.nix
./service-vaultwarden.nix
#./service-surrealdb.nix # not really needed at the moment
./service-vikunja.nix
./service-wastebin.nix
./service-nix-cache.nix
./nginx-ingolf-wagner-de.nix
./nginx-wkd.nix

View file

@ -1,27 +0,0 @@
{ pkgs, ... }:
let
port = 9001;
in
{
services.wastebin = {
enable = true;
settings = {
WASTEBIN_ADDRESS_PORT = "127.0.0.1:${toString port}";
WASTEBIN_TITLE = "paste.ingolf-wagner.de";
WASTEBIN_MAX_PASTE_EXPIRATION = 60 * 60 * 24 * 30;
};
};
services.nginx = {
enable = true;
virtualHosts. "paste.ingolf-wagner.de" = {
forceSSL = true;
enableACME = true;
locations."/" = {
recommendedProxySettings = true;
proxyWebsockets = true;
proxyPass = "http://127.0.0.1:${toString port}";
};
};
};
}