blob: c391e85d3cd2b97334cc73925a8052144f55cadd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[
{ type: install
message: <<EOM
To run Pgweb at startup, enable it in your /etc/rc.conf:
sysrc pgweb_enable="YES"
To start Pgweb:
service pgweb start
Pgweb will listen on port 8081 and bind to localhost.
This can be changed by setting "pgweb_bind" and "pgweb_listen"
in /etc/rc.conf.
sysrc pgweb_bind="0.0.0.0" pgweb_listen="80"
Additional options can be set using "pgweb_flags". See 'pgweb --help' for a list
of all options.
EOM
}
]
|