* Proof of concept of adding 3PIDs data to user profile * Document reverse proxy apache config * Support for Matrix Gateway project roles' endpoint * Fix conflicting ThreePid object defined in SDK and mxisd projects
13 lines
302 B
Markdown
13 lines
302 B
Markdown
# Profile enhancement
|
|
|
|
## Configuration
|
|
|
|
### Reverse proxy
|
|
|
|
#### Apache
|
|
```
|
|
ProxyPassMatch "^/_matrix/client/r0/profile/([^/]+)$" "http://127.0.0.1:8090/_matrix/client/r0/profile/$1"
|
|
ProxyPassMatch "^/_matrix/client/r0/profile/([^/]+)/(.+)" "http://127.0.0.1:8008/_matrix/client/r0/profile/$1/$2"
|
|
|
|
```
|