if you want to share files with other people you can use file station on your NAS but I prefer jirafeau running in a docker container. So I have did the setup a while ago in a docker container. I use always use docker-compose for setup and running containers on my nas. Here is the compose file for jirafeau:
When you run this the first time you have to do a small setup setup like choosing a password. Run this from your ddns and not from your internal ip. When you don't you can not share the file outside your network.
YAML:
version: "2.1"
services:
jirafeau:
container_name: fileshare
restart: unless-stopped
image: jgeusebroek/jirafeau:latest
environment:
- TZ=Europe/Brussels
volumes:
- /volume1/gedeeld/Temp:/data
- /volume1/docker/jirafeau:/cfg
ports:
- "8888:80"