File: pollen.default

package info (click to toggle)
pollen 4.21-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 380 kB
  • sloc: sh: 25; makefile: 22
file content (32 lines) | stat: -rw-r--r-- 1,072 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# HTTP_PORT is the http port on which the pollen server should listen and respond.
# Note that these connections will not be encrypted
# Default: 80
HTTP_PORT="42080"

# HTTPS_PORT is the https port on which the pollen server should listen and respond.
# Note that these connections will be encrypted using TLS
# Default: 443
HTTPS_PORT="42443"

# DEVICE is the source of randomness for entropy read by the server,
# and the destination for received and whitened entropy.
# Default: /dev/random
# Alternative: /dev/urandom
DEVICE="/dev/random"

# BYTES is the size in bytes to transmit and receive each time, to peers
# or neighbors listening for broadcast in the pool.  It is rude to set this
# very high.
# Default: 64
BYTES="64"

# In case you don't want to have the stuff created during install,
# the files below need to be obtained for example from Let's Encrypt
#
# CERT is the location of the TLS certificate
# Default: /etc/pollen/cert.pem
CERT="/etc/pollen/cert.pem"

# KEY is the location of the TLS key
# Default: /etc/pollen/key.pem
KEY="/etc/pollen/key.pem"