mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
Partially fixes #958 The user still has to enable API access from Preferences in the tt-rss app. Ideally, this should be automated, but this setting wasn't trivial to find. Will try to automate this in a future pull request. Signed-off-by: Joseph Nuthalpati <njoseph@thoughtworks.com> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
17 lines
412 B
Plaintext
17 lines
412 B
Plaintext
##
|
|
## On all sites, provide Tiny Tiny RSS on a default path: /tt-rss
|
|
## Allow all valid LDAP users.
|
|
##
|
|
Alias /tt-rss /usr/share/tt-rss/www
|
|
Alias /tt-rss-api /usr/share/tt-rss/www
|
|
|
|
<Location /tt-rss>
|
|
Include includes/freedombox-single-sign-on.conf
|
|
</Location>
|
|
|
|
<Location /tt-rss-api>
|
|
Include includes/freedombox-auth-ldap.conf
|
|
Require valid-user
|
|
# TODO Restrict access to `news` group
|
|
</Location>
|