1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-04-23 22:05:50 +00:00

Update Web server configuration

This commit is contained in:
J. King 2025-03-12 16:48:36 -04:00
parent e2e4ec36c4
commit 4afee3cd47
3 changed files with 20 additions and 29 deletions

View file

@ -11,8 +11,17 @@ usually prudent:
`composer install -o --no-dev`
Upgrading from 0.10.6 to 0.11.0
===============================
- Web server configuration has changed to accommodate new Nextcloud
functionality which replaces deprecated Nextcloud News functionality; the
following URL paths are affected:
- /ocs/v1.php/
Upgrading from 0.10.4 to 0.10.5
=============================
===============================
- PHP 7.3 is now required
- Web server configuration in the Arch Linux package has been modified to ease
@ -20,13 +29,6 @@ Upgrading from 0.10.4 to 0.10.5
configuration files for changes
Upgrading from 0.10.2 to 0.10.3
=============================
- The following Composer dependencies have been removed:
- laminas/laminas-diactoros
Upgrading from 0.8.5 to 0.9.0
=============================
@ -58,14 +60,6 @@ Upgrading from 0.8.2 to 0.8.3
=============================
- PHP 7.1 is now required
- The following Composer dependencies have been added:
- nicolus/picofeed
- laminas/laminas-diactoros
- laminas/laminas-httphandlerrunner
- The following Composer dependencies have been removed:
- p3k/picofeed
- zendframework/zend-diactoros
- zendframework/zend-httphandlerrunner
Upgrading from 0.8.1 to 0.8.2
@ -83,9 +77,6 @@ Upgrading from 0.7.1 to 0.8.0
- Web server configuration has changed to accommodate Fever; the following URL
paths are affected:
- /fever/
- The following Composer dependencies have been added:
- zendframework/zend-diactoros (version 2.x)
- zendframework/zend-httphandlerrunner
Upgrading from 0.5.1 to 0.6.0
@ -97,14 +88,6 @@ Upgrading from 0.5.1 to 0.6.0
working configurations may no longer be accepted
Upgrading from 0.2.1 to 0.3.0
=============================
- The following Composer dependencies have been added:
- zendframework/zend-diactoros
- psr/http-message
Upgrading from 0.2.0 to 0.2.1
=============================
@ -122,5 +105,3 @@ Upgrading from 0.1.x to 0.2.0
- /tt-rss/api/
- /tt-rss/feed-icons/
- /tt-rss/images/
- The following Composer dependencies have been added:
- jkingweb/druuid

View file

@ -3,6 +3,11 @@
Include "/etc/arsse/apache/arsse-fcgi.conf"
</Location>
# Subsidiary Nextcloud functionality
<Location "/ocs/v1.php/">
Include "/etc/arsse/apache/arsse-fcgi.conf"
</Location>
# Tiny Tiny RSS protocol
<Location "/tt-rss/api">
Include "/etc/arsse/apache/arsse-fcgi.conf"

View file

@ -12,6 +12,11 @@ location /index.php/apps/news/api {
}
}
# Subsidiary Nextcloud functionality
location /ocs/v1.php/ {
try_files $uri @arsse;
}
# Tiny Tiny RSS protocol
location /tt-rss/api {
try_files $uri @arsse;