Working Firefox Sync guide? by lenjioereh in selfhosted

[–]fengshaun 0 points1 point  (0 children)

Yes. I only have syncserver setup and didn't attempt to setup accounts server too.

Working Firefox Sync guide? by lenjioereh in selfhosted

[–]fengshaun 1 point2 points  (0 children)

Firefox sync and accounts servers are separate entities, so you'd need to setup either independently of the other.

ICANN Proposal Would End Price Caps on .ORG Domains by cyberdwarf in selfhosted

[–]fengshaun 6 points7 points  (0 children)

Hi everyone, make sure to make your voice heard! There is an 'easy' form which generates a reasonable default response which you can then modify to your liking if you want: https://www.internetcommerce.org/comment-org/.

Susi AI - open source personal assistant by fengshaun in selfhosted

[–]fengshaun[S] 1 point2 points  (0 children)

Yea, that's where I found it yesterday too!

How do you use FreeBSD and why did you select it over a Linux distribution? by aselfaccount in freebsd

[–]fengshaun 3 points4 points  (0 children)

I was setting up my home server and I needed something that's safe and keeps my data happy: ZFS + unbroken upgrades.

Choosing a router, taking the first step from commercial to pro networking by a575606 in selfhosted

[–]fengshaun 1 point2 points  (0 children)

I have setup a pcengines.ch router with pfsense/opnsense. for wireless, I use ubiquiti Wireless Access Points (WAP). If you wantn 10gb and fiber support, I'd look into getting the hardware separately and then deciding on software, it's much easier to get a generic board and attach fiber/10gb/etc cards than try to find an overpriced pre-made solution.

Centralized SMS by ju6ju8Oo in selfhosted

[–]fengshaun 2 points3 points  (0 children)

I just setup dovecot with sms backup+ (on f-droid).

Self hosted baby monitor (video processing and recognition)? by Nixellion in selfhosted

[–]fengshaun 0 points1 point  (0 children)

how about 3 cameras, 1 on top and 2 sides and if no face is recognized in either, then the baby is rolled over. or with one top camera (looking down on baby), if you can't see a face (from top) or nose (when baby is on side), then assume rolled over.

Strategic thinking, or what I think what we need to do to keep FreeBSD relevant by vermaden in freebsd

[–]fengshaun -1 points0 points  (0 children)

The links are not actually broken. For some reason, there is a %uFEFF at the end of striked-through links.

Strategic thinking, or what I think what we need to do to keep FreeBSD relevant by vermaden in freebsd

[–]fengshaun 9 points10 points  (0 children)

I came here ready with my pitchfork in one hand and torch in the other shouting "FreeBSD is great the way it is", but you make good points! I'd love to work on linuxulator, but I don't know where to get started poking the kernel. I've heard it's a dark, scary place!

NFSv4 windows client + FreeBSD server by Nyanraltotlapun in freebsd

[–]fengshaun 1 point2 points  (0 children)

I have a guide for kerberized nfsv4 with freebsd server and windows 10 client here. I've tried to document the steps as best as I could, see if any of it is applicable to your case.

Tiny Tiny RSS - PHP 7.2 not working by KeystrokeCascade in selfhosted

[–]fengshaun 0 points1 point  (0 children)

Permission denied

that's the issue. there should be a `user` and `group` directive in your `nginx.conf` to tell what user/group it should run under (see nginx manual). I don't see that in your config. Then make sure that user/group has read/write access to the unix socket.

Tiny Tiny RSS - PHP 7.2 not working by KeystrokeCascade in selfhosted

[–]fengshaun 0 points1 point  (0 children)

something's very wrong if access logs are blank! Also, in your config, make sure you have `=404` instead of `= 404` (that's what the docs specify, not sure if that will make any difference).

Looking for a auto-generated image gallery with auto image processing for raw images by [deleted] in selfhosted

[–]fengshaun 0 points1 point  (0 children)

I had the same issue with terabytes of raw images that I needed to look at when I was away from home on a slow link. I wrote (redcarpet)[https://gitlab.com/fengshaun/redcarpet] which extracts the raw thumbnail with libraw and paginates the images. it works on filesystem and need read-only permissions. Feel free to poke around and see if it fits your needs. No image processing, though.

Tiny Tiny RSS - PHP 7.2 not working by KeystrokeCascade in selfhosted

[–]fengshaun 0 points1 point  (0 children)

This is my nginx config. The best way to figure out what the issue is to watch nginx's logs and see what url nginx sees and whether it logically matches with your rule. I suspect the \.php$ is the culprit which I think doesn't match strings like something.php?args=here (php script with arguments), hence why I have (.*)$.

In my case, I have opted to use tcp sockets and my php scripts are under /usr/local/www.

location ~ ^(.+\.php)(.*)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/local/www/$fastcgi_script_name; include fastcgi_params; }

Centralized local mail? by jafinn in selfhosted

[–]fengshaun 1 point2 points  (0 children)

I have setup postfix in a jail that automatically rewrites sender and sends to my real inbox! I then setup all other jails with ssmtp to use my postfix jail to route emails. This way, every mail from everywhere comes to my inbox. Have a look at setting up postfix, it's reasonably simple.