On 2023/03/15 18:13:13 -0400, aisha <openbsd.po...@aisha.cc> wrote:
> Hi,
>   Attached trivial update for freshrss to 1.21.0
> 
> Has a security fix for CVE-2023-22481.
> Full feature changelog - 
> https://github.com/FreshRSS/FreshRSS/releases/tag/1.21.0
> 
> Running it for a while and everything is going smoothly, would like to get it 
> in 7.3 as its a security fix.
> 
> OK to update?

ok op@

btw, would you mind adding something like the following to the README?
Wording might not be the best, but it works fine behind httpd(8) :)
(i've always tested behind httpd)

Thanks!

Index: pkg/README
===================================================================
RCS file: /home/cvs/ports/www/freshrss/pkg/README,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 README
--- pkg/README  10 Nov 2022 13:28:31 -0000      1.1.1.1
+++ pkg/README  16 Mar 2023 08:39:19 -0000
@@ -5,7 +5,24 @@
 Exposing a webserver
 ====================
 
-An example nginx config is provided for reference:
+Sample httpd(8) configuration provided for reference:
+
+       # /etc/httpd.conf
+       server "localhost" {
+               listen on * port 80
+
+               root "/freshrss/p"
+               directory index "index.php"
+       
+               location "/" {
+                       directory index "index.html"
+               }
+               location "*.php" {
+                       fastcgi socket "/run/php-fpm.sock"
+               }
+       }
+
+and also one for nginx:
 
 server {
     listen 443 ssl http2;

Reply via email to