mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
75 lines
1.3 KiB
TOML
75 lines
1.3 KiB
TOML
|
|
[server]
|
|
port=":80"
|
|
|
|
#####################################################################
|
|
# SSL configuration
|
|
#
|
|
# [server.ssl]
|
|
# key=""
|
|
# cert=""
|
|
|
|
# [session]
|
|
# secret=""
|
|
# expires=""
|
|
|
|
#####################################################################
|
|
# Database configuration, by default using SQLite3.
|
|
# You can also use postgres and mysql. See the documentation
|
|
# for more details.
|
|
|
|
[database]
|
|
driver="sqlite3"
|
|
datasource="/var/lib/drone/drone.sqlite"
|
|
|
|
|
|
#####################################################################
|
|
# Open Registration allows users to self-register for Drone.
|
|
# This is recommended if Drone is being hosted behind a
|
|
# firewall.
|
|
#
|
|
# When false, the system admin will need to manually add
|
|
# users to Drone through the admin screens.
|
|
#
|
|
# [registration]
|
|
# open=true
|
|
|
|
# [github]
|
|
# client=""
|
|
# secret=""
|
|
|
|
# [github_enterprise]
|
|
# client=""
|
|
# secret=""
|
|
# api=""
|
|
# url=""
|
|
# private_mode=false
|
|
|
|
# [bitbucket]
|
|
# client=""
|
|
# secret=""
|
|
|
|
# [gitlab]
|
|
# url=""
|
|
|
|
|
|
#####################################################################
|
|
# SMTP configuration for Drone. This is required if you plan
|
|
# to send email notifications for build statuses.
|
|
#
|
|
# [smtp]
|
|
# host=""
|
|
# port=""
|
|
# from=""
|
|
# user=""
|
|
# pass=""
|
|
|
|
# [docker]
|
|
# cert=""
|
|
# key=""
|
|
|
|
# [worker]
|
|
# nodes=[
|
|
# "unix:///var/run/docker.sock",
|
|
# "unix:///var/run/docker.sock"
|
|
# ]
|