<feed xmlns='http://www.w3.org/2005/Atom'>
<title>FreshRSS (Customized)/docs, branch 1.22.0</title>
<subtitle>Customized version of FreshRSS, a self-hosted RSS feed aggregator</subtitle>
<id>https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.22.0</id>
<link rel='self' href='https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.22.0'/>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/'/>
<updated>2023-10-08T18:19:17+00:00</updated>
<entry>
<title>Minor update dependencies (#5693)</title>
<updated>2023-10-08T18:19:17+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2023-10-08T18:19:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=13a1c412dfb1878329b62d7c1adb4421d67c279b'/>
<id>urn:sha1:13a1c412dfb1878329b62d7c1adb4421d67c279b</id>
<content type='text'>
* Minor update dependencies
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/5691
Mostly dev dependencies; nothing that affects our runtime

* Update versions for GitHub Actions

* Fix newly found typos

* Fix exclude path</content>
</entry>
<entry>
<title>add oidc callback URL and hints for Authelia to docs (#5646)</title>
<updated>2023-09-10T13:36:14+00:00</updated>
<author>
<name>Balazs Keresztury</name>
<email>belidzs@users.noreply.github.com</email>
</author>
<published>2023-09-10T13:36:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=f470724c6ef307919dfdbcd9b71f8d821f1f10fa'/>
<id>urn:sha1:f470724c6ef307919dfdbcd9b71f8d821f1f10fa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add Hungarian language (#5589)</title>
<updated>2023-08-15T09:18:47+00:00</updated>
<author>
<name>FromTheMoon</name>
<email>87702538+FromTheMoon85@users.noreply.github.com</email>
</author>
<published>2023-08-15T09:18:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=6749adc05066b42843f803362288f5c1274c1572'/>
<id>urn:sha1:6749adc05066b42843f803362288f5c1274c1572</id>
<content type='text'>
* Add Hungarian language

* Fixed missing lines in Hungarian translation</content>
</entry>
<entry>
<title>[docs] Fix typos on the word 'scrape' and its variations (#5567)</title>
<updated>2023-08-05T11:54:09+00:00</updated>
<author>
<name>Steve Jones</name>
<email>steve@squaregoldfish.co.uk</email>
</author>
<published>2023-08-05T11:54:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8f188b57ee20f188a9f882fdf6e5cbf5efa0028d'/>
<id>urn:sha1:8f188b57ee20f188a9f882fdf6e5cbf5efa0028d</id>
<content type='text'>
* Fix typos on the word 'scrape' and its variations

* Fix spelling of 'Tipps'</content>
</entry>
<entry>
<title>Rework trusted proxies (#5549)</title>
<updated>2023-07-30T10:59:18+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2023-07-30T10:59:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=e7689459f25663e00b4f5814a3608872ff36b582'/>
<id>urn:sha1:e7689459f25663e00b4f5814a3608872ff36b582</id>
<content type='text'>
* Rework trusted proxies
Fix https://github.com/FreshRSS/FreshRSS/issues/5502
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/3226

New environment variable `TRUSTED_PROXY`: set to 0 to disable, or to a list of trusted IP ranges compatible with https://httpd.apache.org/docs/current/mod/mod_remoteip.html#remoteiptrustedproxy

New internal environment variable `CONN_REMOTE_ADDR` to remember the true IP address of the connection (e.g. last proxy), even when using mod_remoteip.

Current working setups should not observe any significant change.

* Minor whitespace

* Safer trusted sources during install
Rework of https://github.com/FreshRSS/FreshRSS/pull/5358
https://github.com/FreshRSS/FreshRSS/issues/5357

* Minor readme</content>
</entry>
<entry>
<title>Add OIDC_X_FORWARDED_HEADERS environment variable (fixes #5516) (#5523)</title>
<updated>2023-07-16T12:50:42+00:00</updated>
<author>
<name>otaconix</name>
<email>stefanhetzwaantje@gmail.com</email>
</author>
<published>2023-07-16T12:50:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=a066be93b0dbb70ead9b7ab758c332b764b98400'/>
<id>urn:sha1:a066be93b0dbb70ead9b7ab758c332b764b98400</id>
<content type='text'>
* Add OIDC_X_FORWARDED_HEADERS environment variable (fixes #5516)

The mod_auth_oidc needs an additional directive (`OIDCXForwardedHeaders`)
in case FreshRSS is running behind a reverse proxy, so it knows what host,
protocol and port were used to access it. This information is then used
in the `redirect_uri` when directing the user agent (browser) to the identity
provider for authentication.

Please note that, if you are running FreshRSS behind a reverse proxy that
handles TLS, you may need to update your identity provider's configuration so
it accepts `https://...` as a `redirect_uri`.

* Add link to mod_auth_openidc's documentation for the OIDCXForwardedHeaders Apache configuration directive

* Minor spelling

---------

Co-authored-by: Stefan Zwanenburg &lt;stefan@zwanenburg.info&gt;
Co-authored-by: Alexandre Alapetite &lt;alexandre@alapetite.fr&gt;</content>
</entry>
<entry>
<title>New extension hook entry_auto_read (#5505)</title>
<updated>2023-07-05T09:00:26+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2023-07-05T09:00:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=1db606bc1b6cf25d9b9c4bef362acdb964ce1e8a'/>
<id>urn:sha1:1db606bc1b6cf25d9b9c4bef362acdb964ce1e8a</id>
<content type='text'>
* New extension hook entry_auto_read
For extensions to be notified of articles being automatically marked as read for various reasons

* Documentation + entry_auto_unread</content>
</entry>
<entry>
<title>Allow choosing the OIDC remote user claim and scopes to request from the identity provider (#5481)</title>
<updated>2023-06-30T10:58:20+00:00</updated>
<author>
<name>otaconix</name>
<email>stefanhetzwaantje@gmail.com</email>
</author>
<published>2023-06-30T10:58:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=fc579bd2bc5406abcaa9f8dfffe4232a2e256116'/>
<id>urn:sha1:fc579bd2bc5406abcaa9f8dfffe4232a2e256116</id>
<content type='text'>
* Allow choosing the OIDC remote user claim and scopes to request from the identity provider

* Added comment to explain how checking whether an environment variable is set is done

* Use apostrophe's instead of single quotes for verb contractions in docs

* Move variables used for checking presence of environment variables inside IfDefine block</content>
</entry>
<entry>
<title>docs: web scrapping with XPath (#5494)</title>
<updated>2023-06-26T21:28:24+00:00</updated>
<author>
<name>maTh</name>
<email>math-home@web.de</email>
</author>
<published>2023-06-26T21:28:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=2f485096784c9638cd5909bb826aecaeed004988'/>
<id>urn:sha1:2f485096784c9638cd5909bb826aecaeed004988</id>
<content type='text'>
* added docs

* add correct link

* typo

* A bit of typography

---------

Co-authored-by: Alexandre Alapetite &lt;alexandre@alapetite.fr&gt;</content>
</entry>
<entry>
<title>docs: add deep links (#5493)</title>
<updated>2023-06-24T22:17:02+00:00</updated>
<author>
<name>maTh</name>
<email>math-home@web.de</email>
</author>
<published>2023-06-24T22:17:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=666e951fa3e30c3a1b7f5ae68a2be4e06577b75d'/>
<id>urn:sha1:666e951fa3e30c3a1b7f5ae68a2be4e06577b75d</id>
<content type='text'>
* add deep links

* Update docs/en/index.md

Co-authored-by: Alexandre Alapetite &lt;alexandre@alapetite.fr&gt;

---------

Co-authored-by: Alexandre Alapetite &lt;alexandre@alapetite.fr&gt;</content>
</entry>
</feed>
