README
¶
Prosody Filer
A simple file server for handling XMPP http_upload requests. This server is meat to be used with the Prosody mod_http_upload_external module.
Why should I use this server?
- Prosody's integrated http_upload server seems to be memory leaking.
- This server works without any script interpreters or additional dependencies. It is delivered as a binary.
- Go is very good at serving HTTP requests.
Download
If you are using regular x86_64 Linux, you can download a finished binary for your system on the release page. No need to compile this application yourself.
Build (optional)
If you're using something different than a x64 Linux, you need to compile this application yourself.
To compile the server, you need a full Golang development environment. This can be set up quickly: https://golang.org/doc/install#install
Then checkout this repo:
go get github.com/ThomasLeister/prosody-filer
and switch to the new directory:
cd $GOPATH/src/github.com/ThomasLeister/prosody-filer
The application can now be build:
### Build static binary
./build.sh
### OR regular Go build
go build main.go
Set up / configuration
Setup Prosody Filer environment
Create a new user for Prosody Filer to run as:
adduser --disabled-login --disabled-password prosody-filer
Switch to the new user:
su - prosody-filer
Copy
- the binary
prosody-filer
and - config
config.example.toml
to /home/prosody-filer/
. Rename the configuration to config.toml
.
Configure Prosody
Back in your root shell make sure mod_http_upload
is disabled and mod_http_upload_external
is enabled! Then configure the external upload module:
http_upload_external_base_url = "https://uploads.myserver.tld/upload/"
http_upload_external_secret = "mysecret"
http_upload_external_file_size_limit = 50000000 -- 50 MB
Restart Prosody when you are finished:
systemctl restart prosody
Configure Prosody Filer
Prosody Filer configuration is done via the config.toml file in TOML syntax. There's not much to be configured:
### IP address and port to listen to, e.g. "127.0.0.1:5050"
listenport = "127.0.0.1:5050"
### Secret (must match the one in prosody.conf.lua!)
secret = "mysecret"
### Where to store the uploaded files
storeDir = "./uploads/"
### Subdirectory for HTTP upload / download requests (usually "upload/")
uploadSubDir = "upload/"
Make sure mysecret
matches the secret defined in your mod_http_upload_external settings!
Systemd service file
Create a new Systemd service file: /etc/systemd/system/prosody-filer.service
[Unit]
Description=Prosody file upload server
[Service]
Type=simple
ExecStart=/home/prosody-filer/prosody-filer
Restart=always
WorkingDirectory=/home/prosody-filer
User=prosody-filer
Group=prosody-filer
[Install]
WantedBy=multi-user.target
Reload the service definitions, enable the service and start it:
systemctl daemon-reload
systemctl enable prosody-filer
systemctl start prosody-filer
Done! Prosody Filer is now listening on the specified port and waiting for requests.
Configure Nginx
Create a new config file /etc/nginx/sites-available/uploads.myserver.tld
:
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl;
server_name uploads.myserver.tld;
ssl_certificate /etc/letsencrypt/live/uploads.myserver.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/uploads.myserver.tld/privkey.pem;
client_max_body_size 50m;
location /upload/ {
proxy_pass http://127.0.0.1:5050/upload/;
}
}
Enable the new config:
ln -s /etc/ngin/sites-available/uploads.myserver.tld /etc/nginx/sites-enabled/
Check Nginx config:
nginx -t
Reload Nginx:
systemctl reload nginx
Automatic purge
Prosody Filer has no immediate knowlegde over all the stored files and the time they were uploaded, since no database exists for that. Also Prosody is not capable to do auto deletion if mod_http_upload_external is used. Therefore the suggested way of purging the uploads directory is to execute a purge command via a cron job:
@daily find /var/lib/prosody/uploads -maxdepth 0 -type d -mtime +28 | xargs rm -rf
This will delete uploads older than 28 days.
Check if it works
Get the log via
journalctl -f -u prosody-filer
If your XMPP clients uploads or downloads any file, there should be some log messages on the screen.
Documentation
¶
There is no documentation for this package.