mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 06:14:55 +00:00
6d790c5efd
Needs testing
41 lines
864 B
Text
41 lines
864 B
Text
# Nextcloud News version list
|
|
<LocationMatch "^/index\.php/apps/news/api/?$">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</LocationMatch>
|
|
|
|
# Nextcloud News protocol
|
|
<Location "/index.php/apps/news/api">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# Tiny Tiny RSS protocol
|
|
<Location "/tt-rss/api">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# Tiny Tiny RSS feed icons
|
|
<Location "/tt-rss/feed-icons">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# NOTE: The DocumentRoot directive will dictate whether TT-RSS static images are served correctly
|
|
|
|
# Fever protocol
|
|
<Location "/fever">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# Miniflux protocol
|
|
<Location "/v1">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# Miniflux version number
|
|
<Location "/version">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|
|
|
|
# Miniflux "health check"
|
|
<Location "/healthcheck">
|
|
ProxyPass ${ARSSE_PROXY}
|
|
</Location>
|