github.com/justinjmoses/evergreen@v0.0.0-20170530173719-1d50e381ff0d/docs/evg_example_config.yml (about) 1 database: 2 url: "mongodb://localhost:27017" 3 db: "evg" 4 5 configdir: "config_prod" 6 providers: 7 aws: 8 aws_id: PASTE_AWS_ID 9 aws_secret: PASTE_AWS_SECRET 10 11 api_url: "http://localhost:8080" 12 credentials: 13 github: "paste your token here" 14 15 auth: 16 naive: 17 users: 18 - username: "admin" 19 password: "password" 20 display_name: "Admin" 21 22 keys: 23 main: "/path/to/your/key.pem" 24 25 runner: 26 intervalseconds: 120 27 28 api: 29 httplistenaddr: ":8080" 30 httpslistenaddr: ":8443" 31 httpskey: | 32 -----BEGIN RSA PRIVATE KEY----- 33 ...generated RSA private HTTPS key... 34 -----END RSA PRIVATE KEY----- 35 httpscert: | 36 -----BEGIN CERTIFICATE----- 37 certificate 38 -----END CERTIFICATE----- 39 40 ui: 41 secret: "here is my secret" 42 cachetemplates: true 43 defaultproject: "default project" 44 url: "http://localhost:9090" 45 httplistenaddr: ":9090" 46 47 repotracker: 48 numnewreporevisionstofetch: 10 49 maxreporevisionstosearch: 50 50 51 expansions: 52 github_private_key: |- 53 -----BEGIN RSA PRIVATE KEY----- 54 private key 55 -----END RSA PRIVATE KEY----- 56 github_public_key: paste your private key here