-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmetadata.rb
20 lines (17 loc) · 1.09 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name "nginx"
maintainer "Gerhard Lazu"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs and configures nginx"
version "2.9.3"
recipe "nginx", "Installs nginx package and sets up configuration with Debian apache style with sites-enabled/sites-available"
recipe "nginx::source", "Installs nginx from source and sets up configuration with Debian apache style with sites-enabled/sites-available"
recipe "nginx::apps", "Sets up a reverse proxy for every app, regardless whether it's Ruby, node.js. For Python, you should use the uwsgi_pass proxy_type"
recipe "nginx::status", "Enables nginx status on http://nginx_status"
recipe "nginx::disable", "Disables favicon.ico & robots.txt logging, denies access to .hidden files"
recipe "nginx::real_ip", "Correctly updates the client IP address from the request header, defaults to ELB X-Forwarded-For"
recipe "nginx::self_signed_cert", "Generates a self signed certificate in the location specified by attributes"
supports "ubuntu"
supports "debian"
depends "build-essential"
depends "apt"