Compare commits
No commits in common. "f97d0c1b6fac4eae9b90678d2b2f053fb0312f96" and "cff47bc3e6c5e6f64f3af815ddea7e86d3b3121e" have entirely different histories.
f97d0c1b6f
...
cff47bc3e6
3 changed files with 8 additions and 32 deletions
|
@ -1,21 +0,0 @@
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 4 1 * *"
|
|
||||||
jobs:
|
|
||||||
check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: install nix action
|
|
||||||
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GH_TOKEN }}
|
|
||||||
- name: update flake.lock
|
|
||||||
uses: DeterminateSystems/update-flake-lock@v20
|
|
||||||
with:
|
|
||||||
pr-title: "flake.lock: Update"
|
|
||||||
pr-labels: |
|
|
||||||
nix
|
|
||||||
dependencies
|
|
||||||
automated
|
|
|
@ -1,11 +0,0 @@
|
||||||
on: [push]
|
|
||||||
jobs:
|
|
||||||
check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: install nix action
|
|
||||||
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GH_TOKEN }}
|
|
||||||
- run: nix run nixpkgs#alejandra -- -c .
|
|
|
@ -58,6 +58,13 @@
|
||||||
tls.domains = [{main = "*.flake.sh";}];
|
tls.domains = [{main = "*.flake.sh";}];
|
||||||
tls.certresolver = "production";
|
tls.certresolver = "production";
|
||||||
};
|
};
|
||||||
|
woodpecker-server = {
|
||||||
|
rule = "Host(`ci.flake.sh`)";
|
||||||
|
entrypoints = ["websecure"];
|
||||||
|
service = "woodpecker-server";
|
||||||
|
tls.domains = [{main = "*.flake.sh";}];
|
||||||
|
tls.certresolver = "production";
|
||||||
|
};
|
||||||
hedgedoc = {
|
hedgedoc = {
|
||||||
rule = "Host(`scratch.flake.sh`)";
|
rule = "Host(`scratch.flake.sh`)";
|
||||||
entrypoints = ["websecure"];
|
entrypoints = ["websecure"];
|
||||||
|
@ -79,6 +86,7 @@
|
||||||
forgejo.loadBalancer.servers = [{url = "http://localhost:3200";}];
|
forgejo.loadBalancer.servers = [{url = "http://localhost:3200";}];
|
||||||
rustypaste.loadBalancer.servers = [{url = "http://localhost:8000";}];
|
rustypaste.loadBalancer.servers = [{url = "http://localhost:8000";}];
|
||||||
grafana.loadBalancer.servers = [{url = "http://localhost:3100";}];
|
grafana.loadBalancer.servers = [{url = "http://localhost:3100";}];
|
||||||
|
woodpecker-server.loadBalancer.servers = [{url = "http://localhost:8200";}];
|
||||||
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
||||||
vaultwarden.loadBalancer.servers = [{url = "http://localhost:8222";}];
|
vaultwarden.loadBalancer.servers = [{url = "http://localhost:8222";}];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue