add a 'user.yaml' config that is similar to prod, but with stdout logging and no background
This commit is contained in:
parent
067f2e1b0e
commit
4ba5288aed
3 changed files with 33 additions and 1 deletions
16
README.md
16
README.md
|
@ -34,14 +34,28 @@ Besides detecting and stopping attacks in real time based on your logs, it allow
|
||||||
|
|
||||||
## Key points
|
## Key points
|
||||||
|
|
||||||
### Easy installation, no technical barrier
|
### Fast assisted installation, no technical barrier
|
||||||
|
|
||||||
<img src="docs/assets/images/crowdsec_install.gif" alt="CrowdSec install" title="CrowdSec" width="470" height="900"/>
|
<img src="docs/assets/images/crowdsec_install.gif" alt="CrowdSec install" title="CrowdSec" width="470" height="900"/>
|
||||||
|
|
||||||
|
> User is assisted during setup, providing functional out-of-the-box setup
|
||||||
|
|
||||||
### Out of the box detection
|
### Out of the box detection
|
||||||
|
|
||||||
<img src="docs/assets/images/out-of-the-box-protection.gif" alt="CrowdSec install" title="CrowdSec" width="470" height="900"/>
|
<img src="docs/assets/images/out-of-the-box-protection.gif" alt="CrowdSec install" title="CrowdSec" width="470" height="900"/>
|
||||||
|
|
||||||
|
> Baseline detection is effective out-of-the-box, no fine-tuning required
|
||||||
|
|
||||||
|
### Easy blocker deployment
|
||||||
|
|
||||||
|
<img src="docs/assets/images/blocker-installation.gif" alt="CrowdSec install" title="CrowdSec" width="470" height="900"/>
|
||||||
|
|
||||||
|
> It's trivial to add blockers to enforce decisions of crowdsec
|
||||||
|
|
||||||
|
### Dashboard at handreach
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## About this repository
|
## About this repository
|
||||||
|
|
||||||
This repository contains the code for the two main components of crowdsec :
|
This repository contains the code for the two main components of crowdsec :
|
||||||
|
|
17
config/user.yaml
Normal file
17
config/user.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
working_dir: /tmp/
|
||||||
|
data_dir: ${DATA}
|
||||||
|
config_dir: ${CFG}
|
||||||
|
pid_dir: ${PID}
|
||||||
|
log_dir: /var/log/
|
||||||
|
cscli_dir: ${CFG}/cscli
|
||||||
|
log_mode: stdout
|
||||||
|
log_level: info
|
||||||
|
profiling: false
|
||||||
|
sqlite_path: ${DATA}/crowdsec.db
|
||||||
|
apimode: true
|
||||||
|
daemon: false
|
||||||
|
prometheus: true
|
||||||
|
#for prometheus agent / golang debugging
|
||||||
|
http_listen: 127.0.0.1:6060
|
||||||
|
plugin:
|
||||||
|
backend: "/etc/crowdsec/plugins/backend"
|
|
@ -288,6 +288,7 @@ install_crowdsec() {
|
||||||
install -v -m 600 -D ./config/api.yaml "${CROWDSEC_CONFIG_PATH}" || exit
|
install -v -m 600 -D ./config/api.yaml "${CROWDSEC_CONFIG_PATH}" || exit
|
||||||
mkdir -p ${PID_DIR} || exit
|
mkdir -p ${PID_DIR} || exit
|
||||||
PID=${PID_DIR} DATA=${CROWDSEC_DATA_DIR} CFG=${CROWDSEC_CONFIG_PATH} envsubst < ./config/prod.yaml > ${CROWDSEC_CONFIG_PATH}"/default.yaml"
|
PID=${PID_DIR} DATA=${CROWDSEC_DATA_DIR} CFG=${CROWDSEC_CONFIG_PATH} envsubst < ./config/prod.yaml > ${CROWDSEC_CONFIG_PATH}"/default.yaml"
|
||||||
|
PID=${PID_DIR} DATA=${CROWDSEC_DATA_DIR} CFG=${CROWDSEC_CONFIG_PATH} envsubst < ./config/user.yaml > ${CROWDSEC_CONFIG_PATH}"/user.yaml"
|
||||||
CFG=${CROWDSEC_CONFIG_PATH} PID=${PID_DIR} BIN=${CROWDSEC_BIN_INSTALLED} envsubst < ./config/crowdsec.service > "${SYSTEMD_PATH_FILE}"
|
CFG=${CROWDSEC_CONFIG_PATH} PID=${PID_DIR} BIN=${CROWDSEC_BIN_INSTALLED} envsubst < ./config/crowdsec.service > "${SYSTEMD_PATH_FILE}"
|
||||||
install_bins
|
install_bins
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
|
|
Loading…
Add table
Reference in a new issue