Skip to content

Commit

Permalink
Whitespace fixes and follow-up for PR geerlingguy#54.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Apr 30, 2016
1 parent 7163dbf commit cbbcc8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-nginx.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-nginx)

Installs Nginx on RedHat/CentOS or Debian/Ubuntu linux servers.
Installs Nginx on RedHat/CentOS or Debian/Ubuntu Linux, or FreeBSD servers.

This role installs and configures the latest version of Nginx from the Nginx yum repository (on RedHat-based systems) or via apt (on Debian-based systems). You will likely need to do extra setup work after this role has installed Nginx, like adding your own [virtualhost].conf file inside `/etc/nginx/conf.d/`, describing the location and options to use for your particular website.
This role installs and configures the latest version of Nginx from the Nginx yum repository (on RedHat-based systems) or via apt (on Debian-based systems) or pkgng (on FreeBSD systems). You will likely need to do extra setup work after this role has installed Nginx, like adding your own [virtualhost].conf file inside `/etc/nginx/conf.d/`, describing the location and options to use for your particular website.

## Requirements

Expand Down
2 changes: 1 addition & 1 deletion tasks/setup-FreeBSD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
- name: Create logs directory.
file:
path: /var/log/nginx
state: directory
state: directory
2 changes: 1 addition & 1 deletion vars/FreeBSD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ nginx_mime_file_path: /usr/local/etc/nginx/mime.types
nginx_pidfile: /var/run/nginx.pid
nginx_vhost_path: /usr/local/etc/nginx/sites-enabled
nginx_default_vhost_path: /usr/local/etc/nginx/sites-enabled/default
__nginx_user: "www"
__nginx_user: "www"

0 comments on commit cbbcc8d

Please sign in to comment.