Created
September 19, 2013 14:12
-
-
Save nanobeep/6624088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- 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