fix: [doc] Added note about WSGI issues on Ubuntu 16.04

chg: [doc] Changelog.md updated to latest
pull/3824/head
Steve Clement 2018-10-31 12:11:38 +09:00
parent 153e71b604
commit ce96910743
2 changed files with 23 additions and 0 deletions

View File

@ -55,6 +55,13 @@ New
Changes
-------
- [doc] the venv directory needs usr_t profile. [Steve Clement]
- [doc] Update Centos 6.x and 7.x chg: [doc] re-Added Ubuntu 16.04-LTS
as an archived/old INSTALL Guide (tested working) chg: [doc] Adapted
some variables in generic scripts. [Steve Clement]
- [doc] updated Changelog.md to be more markdown friendly chg: [tools]
Changed the way gen_misp_install_docs.sh parseses the changelog new:
[tools] Added simple tool for git log sanitizing. [Steve Clement]
- [docs] Added note on RHEL unmaintainability at this point of time, by
the core team. [Steve Clement]
- [tools] Updated gitchangelog.rc for latest version of toll, added to
@ -154,6 +161,9 @@ Changes
Fix
---
- [doc] Included git repo of gitchangelog due to Python 3.7 bug fix not
yet in release: https://github.com/vaab/gitchangelog/issues/107.
[Steve Clement]
- [stix import] Importing uuids for objects from external sources.
[chrisr3d]
- [stix import] Importing uuids for STIX files generated via MISP.

View File

@ -442,6 +442,19 @@ echo "User (misp) DB Password: $DBPASSWORD_MISP"
sudo -H -u www-data /var/www/MISP/venv/bin/pip install pyzmq
```
!!! warning
There is an issue with the apache config of misp-dashboard in Ubuntu 16.04
You need to **remove** the following 3 options from **WSGIDaemonProcess**
```
# eviction-timeout=0
# response-buffer-size=0
# server-metrics=Off
```
The version of **libapache2-mod-wsgi-py3** is "out-of-date".
```
ii libapache2-mod-wsgi-py3 4.3.0-1.1build1 amd64 Python 3 WSGI adapter module for Apache
```
{!generic/misp-dashboard-debian.md!}
{!generic/viper-debian.md!}