Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 2.49 KB

README.md

File metadata and controls

72 lines (52 loc) · 2.49 KB

Description

Installs and configures a CloudFoundry Router

Requirements

Platform

  • Ubuntu

Tested on:

  • Ubuntu 10.04

Cookbooks

Requires Opscode's bluepill cookbook for creating init scripts and trotter's cloudfoundry-common cookbook. Also requires Opscode's nginx cookbook for installing and configuring the nginx server that fronts the router.

Usage

This recipe will install a CloudFoundry Router on the target node along with the necessary configuration files and init scripts to run it. In addition, it will install and configure an nginx server that sits in front of the Router. To use in your recipes:

include_recipe "cloudfoundry-router"

Additionaly the ssl recipe can be included. It expects a addresses databag with the following structure: { "id": "10_0_0_1", "cert": "cert.name" } with the id being the ipadress on which you want to listen for https and cert being the base name of the certificate file (so withouth the extesion). The cookbook expects the certificates to be already on the machine for example by using the ssl cookbook.

Attributes

  • cloudfoundry_router['socket_file'] - Unix socket for the connection between the router and nginx. Default is /tmp/router.sock".
  • cloudfoundry_router['access_log'] - Where to write the Router's access log. Default is File.join(node['cloudfoundry_common']['log_dir'], "vcap.access.log").
  • cloudfoundry_router['log_level'] - Log level for the router. Default is info".
  • cloudfoundry_router['log_file'] - Where to write the Router's logs. XXX (trotter): I'm not certain this attribute actually works. Default is File.join(node['cloudfoundry_common']['log_dir'], "router.log").
  • cloudfoundry_router['pid_file'] - Where to write the Router's pid. Default is File.join(node['cloudfoundry_common']['pid_dir'], "router.pid").

License and Author

Author:: Trotter Cashion ([email protected]) Author:: Ruben Koster

Copyright:: 2012 Trotter Cashion

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.