diff options
author | elijah <elijah@riseup.net> | 2013-11-15 01:02:25 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-11-22 11:14:13 -0800 |
commit | 289a00a149ac08d01b8ee638620d8c2928966fa3 (patch) | |
tree | ad30a87e4dd2c5bec05b6c8bf39fd7cdb49fbaff /provider_base | |
parent | 970fcd5d3262735c8ae7979a462cd77bf270b108 (diff) |
improvements to webapp deployment: allow for greater customization, allow for custom git source, improve apache config.
Diffstat (limited to 'provider_base')
-rw-r--r-- | provider_base/services/webapp.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/provider_base/services/webapp.json b/provider_base/services/webapp.json index 9b02afce..392375ff 100644 --- a/provider_base/services/webapp.json +++ b/provider_base/services/webapp.json @@ -4,18 +4,18 @@ "modules": ["user", "billing", "help"], "couchdb_admin_user": "= global.services[:couchdb].couch.users[:admin]", "couchdb_webapp_user": "= global.services[:couchdb].couch.users[:webapp]", - "favicon": "= file_path 'branding/favicon.ico'", - "tail_scss": "= file_path 'branding/tail.scss'", - "head_scss": "= file_path 'branding/head.scss'", - "img_dir": "= file_path 'branding/img'", - "home_page": "= file_path 'branding/views/home.html.haml'", + "customization_dir": "= file_path 'webapp'", "client_certificates": "= global.provider.ca.client_certificates", "allow_limited_certs": "= global.provider.service.allow_limited_bandwidth", "allow_unlimited_certs": "= global.provider.service.allow_unlimited_bandwidth", "allow_anonymous_certs": "= global.provider.service.allow_anonymous", "secret_token": "= secret :webapp_secret_token", "api_version": 1, - "secure": false + "secure": false, + "git": { + "source": "https://leap.se/git/leap_web", + "revision": "origin/master" + } }, "stunnel": { "couch_client": "= stunnel_client(nodes_like_me[:services => :couchdb], global.services[:couchdb].couch.port)" |