mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-24 03:35:59 +08:00
71 lines
1.3 KiB
CoffeeScript
71 lines
1.3 KiB
CoffeeScript
module.exports =
|
|
web:
|
|
name: 'RootPanel'
|
|
url: 'http://rp.rpvhost.net'
|
|
listen: '/tmp/rootpanel.sock'
|
|
repo: 'jysperm/RootPanel'
|
|
google_analytics_id: ''
|
|
cookie_time: 30 * 24 * 3600 * 1000
|
|
|
|
i18n:
|
|
default_language: 'zh-CN'
|
|
default_timezone: 'Asia/Shanghai'
|
|
|
|
plugins:
|
|
'built-in':
|
|
enable: true
|
|
|
|
server:
|
|
ssh:
|
|
id_key: './.ssh/id_rsa'
|
|
|
|
servers:
|
|
master:
|
|
host: 'localhost'
|
|
master: true
|
|
available_components: []
|
|
|
|
billing:
|
|
currency: 'CNY'
|
|
|
|
freeze_conditions:
|
|
balance_below: 0
|
|
arrears_above: 0
|
|
|
|
plans:
|
|
all:
|
|
name: 'plans.sample.name'
|
|
description: 'plans.sample.description'
|
|
|
|
available_components:
|
|
linux:
|
|
defaults: (account) ->
|
|
return {
|
|
payload:
|
|
username: account.username
|
|
}
|
|
|
|
billing:
|
|
time:
|
|
interval: 24 * 3600 * 1000
|
|
price: 10 / 30
|
|
prepaid: true
|
|
|
|
mongodb:
|
|
host: 'localhost'
|
|
name: 'RootPanel'
|
|
|
|
redis:
|
|
host: '127.0.0.1'
|
|
port: 6379
|
|
|
|
email:
|
|
from: 'robot@rpvhost.net'
|
|
reply_to: 'admins@rpvhost.net'
|
|
|
|
account:
|
|
service: 'Postmark'
|
|
auth:
|
|
user: 'postmark-api-token'
|
|
pass: 'postmark-api-token'
|