Skip to content

Instantly share code, notes, and snippets.

View backeby's full-sized avatar

Andrew Backeby backeby

  • Stockholm, Sweden
View GitHub Profile
@backeby
backeby / compile_nginx_from_sources.yml
Created September 17, 2018 06:31 — forked from dkorn/compile_nginx_from_sources.yml
Ansible Playbook compiling NGINX from sources, to include particular modules
---
- name: Compile NGINX from sources
hosts: webserver
vars:
nginx_version: nginx-1.13.4
nginx_tarball_url: "http://nginx.org/download/{{ nginx_version }}.tar.gz"
nginx_install_dir: "/tmp/{{ nginx_version }}"
nginx_sbin_path: "/usr/sbin/nginx"
nginx_conf_path: "/etc/nginx/nginx.conf"