| PRIVATEBIN.CONF(5) | Privatebin Manual | PRIVATEBIN.CONF(5) |
privatebin.conf – privatebin CLI configuration file.
The privatebin(1) command line interface create paste to an PrivateBin instance configured in the config.json.
Minimal privatebin configuration file:
{
"bin": [
{
"name": "", // default
"host": "https://privatebin.net"
}
]
}
A bit more complete configuration file:
{
"bin": [
{
"name": "example",
"host": "bin.example.com",
"auth": {
"username": "john.doe",
"password": "s$cr$t"
},
"formatter": "markdown",
"burn-after-reading": false
},
{
"name": "",
"host": "https://privatebin.net"
"extra-header-fields": {
"Foo": "Bar",
},
},
],
"burn-after-reading": true
}
Bryan Frimin.
| April 15, 2024 | 2.0.1 |