Compare commits
No commits in common. "9631758da008fdd3b1ec980fef58593d368a7ce4" and "4a9d351319fd9334f19f8e2db0419ac131309e4c" have entirely different histories.
9631758da0
...
4a9d351319
3 changed files with 5 additions and 33 deletions
|
@ -3,9 +3,9 @@ name: Build all NixOS Configurations
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- '**'
|
||||||
schedule:
|
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:
|
jobs:
|
||||||
nix build:
|
nix build:
|
||||||
|
|
|
@ -8,16 +8,15 @@
|
||||||
../../components
|
../../components
|
||||||
../../modules
|
../../modules
|
||||||
|
|
||||||
./service-forgejo-runner.nix
|
|
||||||
./service-forgejo.nix
|
./service-forgejo.nix
|
||||||
|
./service-forgejo-runner.nix
|
||||||
./service-hedgedoc.nix
|
./service-hedgedoc.nix
|
||||||
./service-nix-cache.nix
|
|
||||||
./service-photoprism.nix
|
./service-photoprism.nix
|
||||||
#./service-surrealdb.nix # not really needed at the moment
|
|
||||||
./service-taskserver.nix
|
./service-taskserver.nix
|
||||||
./service-vaultwarden.nix
|
./service-vaultwarden.nix
|
||||||
|
#./service-surrealdb.nix # not really needed at the moment
|
||||||
./service-vikunja.nix
|
./service-vikunja.nix
|
||||||
./service-wastebin.nix
|
./service-nix-cache.nix
|
||||||
|
|
||||||
./nginx-ingolf-wagner-de.nix
|
./nginx-ingolf-wagner-de.nix
|
||||||
./nginx-wkd.nix
|
./nginx-wkd.nix
|
||||||
|
|
|
@ -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}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue