19 lines
670 B
Bash
19 lines
670 B
Bash
#LetsEncrypt
|
|
LETSENCRYPT_DEFAULT_EMAIL=youremail@example.com
|
|
|
|
#Gitea Server
|
|
GITEA_HOST=gitea.example.com
|
|
|
|
#Drone Server
|
|
DRONE_GITEA_SERVER=https://gitea.example.com
|
|
DRONE_GITEA_CLIENT_ID=da1cdbdd-a50d-4367-80d9-a8fdff8c652f #Oauth application id from gitea
|
|
DRONE_GITEA_CLIENT_SECRET=ftJDp0UdFgutif7K3XuFYZKAXCLaHZxKA-psdyS_LkE= #Oauth application secret
|
|
DRONE_RPC_SECRET=a1cf994eee95899f31f296c25d8310f0 #Generated drone RPC secret
|
|
DRONE_SERVER_HOST=drone.example.com
|
|
DRONE_SERVER_PROTO=https
|
|
|
|
#Drone Runner
|
|
DRONE_RPC_PROTO=http
|
|
DRONE_RPC_HOST=drone.example.com:8000 #Set this to the box host to bypass the proxy
|
|
DRONE_RUNNER_CAPACITY=2
|
|
DRONE_RUNNER_NAME=drone-runner |