cookbook 'apache', '= 0.0.2'
apache (5) Versions 0.0.2 Follow25
various apache server related resource provides (LWRP)
cookbook 'apache', '= 0.0.2', :supermarket
knife supermarket install apache
knife supermarket download apache
Description
various apache server related resource provides (LWRP)
- 
apache_fastcgi- configure fastcgi server via apache name based virtual host, now onlyexternalmode available
Platfroms
- gentoo
- ubuntu
Requirements
- apache2 cookbook - https://github.com/opscode/cookbooks/tree/master/apache2
Resource Attributes
- obligatory 
- 
socket- a socket to which fast cgi external server is binded
- 
server_name- name of virtual host
 
- 
- optional
- 
timeout- Integer, a time to wait for fast cgi server response, in seconds, default value180
- 
access_log- a path to apache access log file
- 
error_log- a path to apache error log file
 
- 
Usage
apache_fastcgi 'myserver' do 
 action 'install'
 socket '/var/run/fast-cgi-server/socket'
 server_name 'host.myserver.com'
end
Links
ToDo
- add more platforms support
- add more tests
- add wiki and howtos