Browse Source

Fix sample Nginx configuration

rpm
J. King 4 years ago
parent
commit
9b11001402
  1. 6
      CHANGELOG
  2. 11
      UPGRADING
  3. 1
      dist/nginx.conf
  4. 1
      docs/en/020_Getting_Started/030_Web_Server_Configuration.md
  5. 2
      lib/Arsse.php

6
CHANGELOG

@ -1,3 +1,9 @@
Version 0.8.5 (2020-??-??)
==========================
Bug fixes:
- Added the QUERY_STRING FastCGI paramater to the sample Nginx configuration
Version 0.8.4 (2020-09-09)
==========================

11
UPGRADING

@ -11,6 +11,17 @@ usually prudent:
`composer install -o --no-dev`
Upgrading from 0.8.4 to 0.8.5
=============================
- The sample configuration for Nginx has changed, to correct the omission of
the QUERY_STRING FastCGI parameter in those passed to PHP. The omission
affects the Fever protocol in particular (the parameter is required for
Fever to function at all), though it could potentially affect some
Nextcloud News clients as well.
- No significant code changes have been made in this version
Upgrading from 0.8.2 to 0.8.3
=============================

1
dist/nginx.conf

@ -19,6 +19,7 @@ server {
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param REQUEST_URI $uri;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_param REMOTE_USER $remote_user;
}

1
docs/en/020_Getting_Started/030_Web_Server_Configuration.md

@ -30,6 +30,7 @@ server {
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param REQUEST_URI $uri;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param HTTPS $https if_not_empty;
fastcgi_param REMOTE_USER $remote_user;
}

2
lib/Arsse.php

@ -7,7 +7,7 @@ declare(strict_types=1);
namespace JKingWeb\Arsse;
class Arsse {
public const VERSION = "0.8.4";
public const VERSION = "0.8.5";
/** @var Lang */
public static $lang;

Loading…
Cancel
Save