Skip to content

Instantly share code, notes, and snippets.

@nanobeep
Created September 19, 2013 14:12
Show Gist options
  • Save nanobeep/6624088 to your computer and use it in GitHub Desktop.
Save nanobeep/6624088 to your computer and use it in GitHub Desktop.
---
- hosts: all
tasks:
- apt_key: id=AC40B2F7 state=present url="http://keyserver.ubuntu.com/pks/lookup?op=get&fingerprint=on&search=0x561F9B9CAC40B2F7"
- apt: pkg=apt-transport-https state=present
- apt_repository: state=present repo='deb https://oss-binaries.phusionpassenger.com/apt/passenger raring main'
- apt: pkg=nginx-full state=present
- apt: pkg=passenger state=present update_cache=yes
- copy: src=/tmp/nginx.conf dest=/etc/nginx/nginx.conf
- service: name=nginx state=started
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment