forked from pool/hawk2
- Update to version 2.6.4+git.1682509819.1ff135ea: * Tests: upgrate tests for ruby3.2 (tumbleweed) * Upgrade for ruby3.2 (tumbleweed) * Forbid special symbols in the category * Rename functional CD test * Fix the sass-rails version on ~5.0 * Don't delete the private key if the public key is missing * Minor enhancements to e2e_test - Update sass-ansible dependency in the hawk2.spec: * Unable to activate sass-rails-5.1.0 (bsc#1208533) - Update to version 2.6.4+git.1667244108.7a0cffe: * Fix detection of partial upgrade (bsc#1196673,bsc#1203367) * Improve handling of unmatched paths (bsc#1199258) * Set HttpOnly by HAWK_COOKIE_HTTP_ONLY=true (bsc#1198647) - Update to version 2.6.4: * Fix wizards ui (bsc#1184274) - Update to version 2.6.3: * Remove hawk_invoke and use capture3 instead of runas (bsc#1179999)(CVE-2020-35459) * Remove unnecessary chmod (bsc#1182166)(CVE-2021-25314) * Sanitize filename to contains whitelist of alphanumeric (bsc#1182165) - Update to version 2.6.0: * Use fullpath of binary (bsc#1181436) * remove %x (bsc#1182163) - Update to version 2.4.0+git.1611141202.2fe6369e: * Improve further mechanism of controllers to system commands. * drop patch 0001-Improve-controllers.patch since merged upstream (CVE-2020-35458) - Update to version 2.3.0+git.1603969748 * fix bsc#1179998. Handle better input on app controllers (CVE-2020-35458) - Update to version 2.2.0+git.1603969748.10468582: OBS-URL: https://build.opensuse.org/request/show/1087350 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/hawk2?expand=0&rev=263
60 lines
1.8 KiB
Plaintext
60 lines
1.8 KiB
Plaintext
## Path: Cluster/Hawk
|
|
## Description: Mode of operation
|
|
## Type: string(production,development,test)
|
|
## Default: production
|
|
## ServiceRestart: hawk
|
|
# Hawk can run in production, development or test mode. Normally, this
|
|
# determines which database is used, but it may also have other
|
|
# implications.
|
|
HAWK_ENV="production"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: Maximum number of threads
|
|
## Type: integer
|
|
## Default: 1
|
|
## ServiceRestart: hawk
|
|
# Sets the maximum number of threads used by the web server.
|
|
HAWK_THREADS="16"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: Maximum number of worker processes
|
|
## Type: integer
|
|
## Default: 2
|
|
## ServiceRestart: hawk
|
|
# Sets the maximum number of separate worker processes spawned by the
|
|
# web server.
|
|
HAWK_WORKERS="1"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: Listen address
|
|
## Type: ip
|
|
## Default: 0.0.0.0
|
|
## ServiceRestart: hawk
|
|
# Network address which Hawk listens to for connections.
|
|
HAWK_LISTEN="0.0.0.0"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: Port
|
|
## Type: integer(0:65565)
|
|
## Default: 7630
|
|
## ServiceRestart: hawk
|
|
# Port which Hawk listens to.
|
|
HAWK_PORT="7630"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: SSL key used by the web server
|
|
## Type: string
|
|
## Default: /etc/hawk/hawk.key
|
|
## ServiceRestart: hawk
|
|
# Configures an SSL key that the Hawk web server presents.
|
|
HAWK_KEY="/etc/hawk/hawk.key"
|
|
|
|
## Path: Cluster/Hawk
|
|
## Description: SSL certificate used by the web server
|
|
## Type: string
|
|
## Default: /etc/hawk/hawk.pem
|
|
## ServiceRestart: hawk
|
|
# Configures an SSL certificate that the Hawk web server presents.
|
|
HAWK_CERT="/etc/hawk/hawk.pem"
|
|
|