On 2022/09/06 20:58:11 -0400, aisha <[email protected]> wrote:
> On 22/06/11 09:52PM, Omar Polo wrote:
> > aisha <[email protected]> wrote:
> > > On 5/21/2022 8:00 AM, aisha wrote:
> >
> > - the license is AGPL-3.0. (for stuff like this the difference between
> > GPL and affero gpl is important.)
> >
> > - I'd add PKG_ARCH = *
> >
> > - I don't particularly like "FreshRSS" as package name, what about
> > "freshrss" (lowercase)? Setting FULLPKGNAME=${PKGNAME:L} should do it
> > in this case.
> >
>
> sorry for late reply, here's the updated tarball!
>
> It would be nice to have this in the tree, after removing tiny tiny rss we
> don't have anything quite like it.
>
> aisha
% tar xzvf freshrss-1.19.2.tgz
...
www/freshrss/.Makefile.~undo-tree~
hello fellow emacs user :)
I'm not particularly experienced in php stuff but the port looks fine
for me and it's ok op@ to import it if someone wants to.
I've tested it locally behind httpd(8) and overall seems to work. For
reference, this is the configuration:
server "localhost" {
listen on localhost port 80
root "/freshrss/p"
directory index "index.php"
location "/" {
directory index "index.html"
}
location "*.php" {
fastcgi socket "/run/php-fpm.sock"
}
}
once i remembered to enable the php modules the installer was happy
and the web interface works, i can click around in the various pages.
I'm having an issue (that is 100% PEBCAK) with php-curl that seems to
be unable to resolve hostnames, but this is not an issue with the port
itself: even a simple php script like:
$ch = curl_init("https://www.openbsd.org");
var_dump(curl_exec($ch));
var_dump(curl_error($ch));
yields "Could not resolve host: www.openbsd.org".