blob: ab599205fef2ea75604fff7f93accd293f8c843d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
.Dd $Mdocdate$
.Dt sakisafeclirc 5
.Os
.Sh sakisafeclirc
.Nm sakisafeclirc
.Nd sakisafecli runtime configuration
.Sh DESCRIPTION
The sakisafecli(1) utility supports a configuration file. Which is by
default in $HOME/.sakisafeclirc. This configuration file allows to
change the default behaviour of sakisafecli(1) Lines that begin with
.Sy #
are ignored.
The files uses a simple
.Sy key=value
format. This are the possible keys:
.Sy server (string)
Specify the server to upload the file.
.Sy http_proxy (string)
Specify the HTTP proxy address.
.Sy socks_proxy (string)
Specify the SOCKS proxy address.
.Sy use_socks_sproxy (boolean)
Specify whether to use or not the SOCKS Proxy specified with
.Sy socks_proxy
.Sy use_http_proxy (boolean)
Specify whether to use or not the HTTP proxy specified with
.Sy http_proxy
.Sy force_ipv6 (boolean)
Force an IPv6 connection. Cannot be used with
.Sy force_ipv4
.Sy force_ipv4 (boolean)
Force an IPv4 connection. Cannot be used with
.Sy force_ipv6
.Sy key
Path to the private ssh key used to connect to a server using the
.Sy scp
protocol.
.Sh FILES
.Bl -tag -width $HOME/.sakisafeclirc -compact
.It Pa $HOME/.sakisafeclirc
configuration file.
.Sh EXAMPLE
This example sets the default server to
.Em https://ls.qorg11.net. Forcing
.Em IPv6 connection
and with the
.Em socks_proxy
127.0.0.1:9050
.Bd -literal -offset indent;
server="https://ss.suragu.net"
socks_proxy="127.0.0.1:9050"
force_ipv4=true
use_socks_proxy=true
.Ed
.Sh AUTHORS
Raoul Vaughn <chief_keef at riseup dot net>
.Sh SEE ALSO
sakisafecli(1)
|