mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
Edit changelog
This commit is contained in:
parent
ecc5ed0b22
commit
4c1af06780
1 changed files with 12 additions and 3 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -38,7 +38,7 @@ mkdir -p media/images
|
||||||
## MR 163: Fix install re2o
|
## MR 163: Fix install re2o
|
||||||
|
|
||||||
Refactored install_re2o.sh script.
|
Refactored install_re2o.sh script.
|
||||||
* There are more tools available with it but some fucntion have changed, report to [the dedicated wiki page](for more informations) or run:
|
* There are more tools available with it but some function have changed, report to [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/User%20Documentation/Setup%20script)for more informations or run:
|
||||||
```
|
```
|
||||||
install_re2o.sh help
|
install_re2o.sh help
|
||||||
```
|
```
|
||||||
|
@ -46,10 +46,19 @@ install_re2o.sh help
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## MR XXX: Cleanup and refactor API
|
## MR 172: Refactor API
|
||||||
|
|
||||||
Activate HTTP Authorization passthrough in by adding the following in /etc/apache2/site-available/re2o.conf (example in install_utils/apache2/re2o.conf):
|
Creates a new (nearly) REST API to expose all models of Re2o. See [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/API/Raw-Usage) for more details on how to use it.
|
||||||
|
* Activate HTTP Authorization passthrough in by adding the following in `/etc/apache2/site-available/re2o.conf` (example in `install_utils/apache2/re2o.conf`):
|
||||||
```
|
```
|
||||||
WSGIPassAuthorization On
|
WSGIPassAuthorization On
|
||||||
```
|
```
|
||||||
|
* Activate the API if you want to use it by adding `'api'` to the optional apps in `re2o/settings_local.py`:
|
||||||
|
```
|
||||||
|
OPTIONAL_APPS = (
|
||||||
|
...
|
||||||
|
'api',
|
||||||
|
...
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue