blob: 0ce131ff7a73721c4bd06a6d8f263b3c754fc4e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Hostname to access the device; e.g. localhost, tvcloud.fr
NGINX__HOST=localhost
# HTTP port published by the host
HOST__HTTP_PORT=80
# HTTPS port published by the host
HOST__HTTPS_PORT=443
# Directory containing the TLS certificate/key pair named
# `server.crt`/`server.key` as well as a `.htpasswd` file with the encrypted
# credentials to access logseq
HOST__SECRET_DIR=/home/USER/.local/net_services/certs
# Directory containing Git repositories
HOST__GIT_REPO_DIR=/home/USER/.local/net_services/git
# https://git.tvcloud.fr/cgit/tree/readme.md
HOST__CGITRC_DIR=/home/USER/.local/net_services/cgit/cgitrc
HOST__CGIT_FILTER_DIR=/home/USER/.local/net_services/cgit/filter
HOST__CGIT_ABOUT_DIR=/home/USER/.local/net_services/cgit/about
# Directory containing the `.htpasswd` file with the encrypted credentials of the
# Radicale users.
HOST__RADICALE_USERS_DIR=/home/USER/.local/net_services/radicale
|