blob: b6c95e2eb7bb90e93f4ccab429048290de9fef05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Configuration for the penguins.lan OpenRC service (/etc/init.d/penguins).
# User/group the daemon runs as.
penguins_user="penguins"
penguins_group="penguins"
# Deploy tree. Must contain the binary plus .env, db/, templates/ and static/.
penguins_dir="/opt/penguins.lan"
# Path to the compiled binary (defaults to ${penguins_dir}/penguins).
#penguins_bin="/opt/penguins.lan/penguins"
# Subcommand flags. Add e.g. -dns-port 53 to serve real DNS, or -port 80 for
# HTTP on the privileged port (both rely on cap_net_bind_service). To sit behind
# a reverse proxy, swap the TCP port for a unix socket: -socket /run/penguins.sock
penguins_flags="-server -scheduler -dns -dns-port 53 -port 9000 -migrate"
|