config.mk gone, update all manual pages

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/marisa/trunk@66 d6811dac-2434-b64a-9ddc-f563ab233461
This commit is contained in:
yakumo.izuru 2023-09-19 02:27:33 +00:00
parent e0ddceb7b4
commit 0f18a4e48e
4 changed files with 36 additions and 29 deletions

View File

@ -1,2 +0,0 @@
GO = go
GOOS = `{uname -s | tr A-Z a-z}

View File

@ -1,11 +1,11 @@
.Dd 2021-11-03 .Dd $Mdocdate$
.Dt PARTAGE-TRASH 1 .Dt MARISA-TRASH 1
.Os POSIX.1-2017 .Os
.Sh NAME .Sh NAME
.Nm partage-trash .Nm marisa-trash
.Nd Purge expired share files .Nd Purge expired share files
.Sh SYNOPSIS .Sh SYNOPSIS
.Nm partage-trash .Nm marisa-trash
.Op Fl v .Op Fl v
.Op Fl f Ar files .Op Fl f Ar files
.Op Fl m Ar metadata .Op Fl m Ar metadata
@ -22,7 +22,7 @@ directory if the expiration time has passed.
is best run as a is best run as a
.Xr cron 8 .Xr cron 8
job, as the same user as the job, as the same user as the
.Xr partage 1 .Xr marisa 1
daemon. daemon.
.Bl -tag -width Ds .Bl -tag -width Ds
.It Fl v .It Fl v
@ -36,6 +36,9 @@ Lookup metadata files in directory
.Pa metadata .Pa metadata
.El .El
.Sh SEE ALSO .Sh SEE ALSO
.Xr partage 1 .Xr marisa 1
.Sh AUTHOR .Sh AUTHOR
.An Willy Goiffon Aq Mt dev@z3bra.org .An Willy Goiffon Aq Mt dev@z3bra.org
.Pp
"Borrowed" by
.An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja

View File

@ -1,11 +1,11 @@
.Dd 2021-11-03 .Dd $Mdocdate$
.Dt PARTAGE 1 .Dt MARISA 1
.Os POSIX.1-2017 .Os
.Sh NAME .Sh NAME
.Nm partage .Nm marisa
.Nd HTTP based file upload system .Nd HTTP based file upload system
.Sh SYNOPSIS .Sh SYNOPSIS
.Nm partage .Nm marisa
.Op Fl v .Op Fl v
.Op Fl f Ar file .Op Fl f Ar file
.Sh DESCRIPTION .Sh DESCRIPTION
@ -17,7 +17,7 @@ Files uploaded are saved in a single directory and given random names
while retaining their original extension. while retaining their original extension.
A configurable expiration time is set for each file, that can be used A configurable expiration time is set for each file, that can be used
to cleanup expired files thanks to to cleanup expired files thanks to
.Xr partage-trash 1 . .Xr marisa-trash 1 .
.Bl -tag -width Ds .Bl -tag -width Ds
.It Fl v .It Fl v
Turn on verbose logging to Turn on verbose logging to
@ -27,7 +27,10 @@ Load configuration from
.Pa file .Pa file
.El .El
.Sh SEE ALSO .Sh SEE ALSO
.Xr partage-trash 1 , .Xr marisa-trash 1 ,
.Xr partage.conf 5 .Xr marisa.conf 5
.Sh AUTHOR .Sh AUTHORS
.An Willy Goiffon Aq Mt dev@z3bra.org .An Willy Goiffon Aq Mt dev@z3bra.org
.Pp
"Borrowed" by
.An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja

View File

@ -1,13 +1,13 @@
.Dd 2021-11-03 .Dd $Mdocdate$
.Dt PARTAGE.CONF 5 .Dt MARISA.CONF 5
.Os POSIX.1-2017 .Os
.Sh NAME .Sh NAME
.Nm partage.conf .Nm marisa.conf
.Nd partage configuration file format .Nd marisa configuration file format
.Sh DESCRIPTION .Sh DESCRIPTION
.Nm .Nm
is the configuration file for the HTTP file sharing system, is the configuration file for the HTTP file sharing system,
.Xr partage 1 . .Xr marisa 1 .
.Sh CONFIGURATION .Sh CONFIGURATION
Here are the settings that can be set: Here are the settings that can be set:
.Bl -tag -width Ds .Bl -tag -width Ds
@ -17,7 +17,7 @@ Have the program listen on
This socket can be specified either as a TCP socket: This socket can be specified either as a TCP socket:
.Ar host:port .Ar host:port
or as a Unix socket: or as a Unix socket:
.Ar /path/to/partage.sock . .Ar /path/to/marisa.sock .
When using Unix sockets, the program will serve content using the When using Unix sockets, the program will serve content using the
.Em FastCGI .Em FastCGI
protocol. protocol.
@ -54,7 +54,7 @@ Configuration suitable for use with
.Xr httpd 8 .Xr httpd 8
using fastcgi: using fastcgi:
.Bd -literal -offset indent .Bd -literal -offset indent
listen = /run/partage.sock listen = /run/marisa.sock
baseuri = https://domain.tld baseuri = https://domain.tld
user = www user = www
group = daemon group = daemon
@ -76,16 +76,19 @@ server "domain.tld" {
listen on * tls port 443 listen on * tls port 443
connection { max request body 10737418240 } connection { max request body 10737418240 }
location "*" { location "*" {
fastcgi socket "/run/partage.sock" fastcgi socket "/run/marisa.sock"
} }
} }
types { include "/usr/share/misc/mime.types" } types { include "/usr/share/misc/mime.types" }
.Ed .Ed
.Sh SEE ALSO .Sh SEE ALSO
.Xr partage 1 , .Xr marisa 1 ,
.Xr partage-trash 1 , .Xr marisa-trash 1 ,
.Xr httpd 8, .Xr httpd 8,
.Xr httpd.conf 5 .Xr httpd.conf 5
.Sh AUTHORS .Sh AUTHORS
.An Willy Goiffon Aq Mt dev@z3bra.org .An Willy Goiffon Aq Mt dev@z3bra.org
.Pp
"Borrowed" by
.An Izuru Yakumo Aq Mt yakumo.izuru@chaotic.ninja