blob: 240b0aa4bfd42e5f57ad7c023d8e149cddead8b9 (
plain)
1
2
3
4
5
6
7
8
9
|
# configuration file of pastme service
import os.path
# the directory where the pastes are stored
pastedir = '/pastes' if os.path.exists('/pastes') else '/tmp/pastes'
# how many days a paste remain stored
timeout = 30
|