gitextract_5nkzvnhi/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── defaults/ │ └── main.yml ├── files/ │ ├── index.html │ ├── mime.types │ └── naxsi_core.rules ├── handlers/ │ └── main.yml ├── meta/ │ └── main.yml ├── tasks/ │ ├── configure.yml │ ├── default_site.yml │ ├── directories.yml │ ├── main.yml │ ├── modules/ │ │ ├── _authorized_ips.yml │ │ ├── google_perftools_module.yml │ │ ├── headers_more_module.yml │ │ ├── http_auth_request_module.yml │ │ ├── http_echo_module.yml │ │ ├── http_geoip_module.yml │ │ ├── http_gzip_static_module.yml │ │ ├── http_perl_module.yml │ │ ├── http_realip_module.yml │ │ ├── http_spdy_module.yml │ │ ├── http_ssl_module.yml │ │ ├── http_stub_status_module.yml │ │ ├── ipv6_module.yml │ │ ├── naxsi_module.yml │ │ ├── ngx_pagespeed.yml │ │ └── upload_progress_module.yml │ ├── modules.yml │ ├── monit.yml │ ├── package.yml │ ├── scripts.yml │ ├── sites.yml │ ├── source.yml │ └── user.yml ├── templates/ │ ├── .nginx_compilation_flags.j2 │ ├── default.site.j2 │ ├── etc_monit_conf.d_nginx.j2 │ ├── modules/ │ │ ├── authorized_ips.j2 │ │ ├── http_gzip_static.conf.j2 │ │ ├── http_realip.conf.j2 │ │ ├── nginx_status.j2 │ │ └── upload_progress.j2 │ ├── nginx.conf.j2 │ ├── nginx.init.j2 │ ├── nxdissite.j2 │ ├── nxensite.j2 │ └── site.j2 ├── test.yml └── vagrant-inventory