NGINX Web Server
Minimum tested Ansible version: 2.9.5
This runs an nginx web server, which can be configured to to:
- Serve static files
- Redirect traffic to another location
- Reverse proxy for another service
It also can provide TLS termination (and a 301 redirect from http:// to https:// URLs if TLS is enabled), as well as providing HTTP Basic Authentication support.
The TLS configuration settings are designed to qualify for a minimum of an A rating (as of 2020-07-04) on the Qualsys SSL Labs server test, using the recommendations from the Mozilla SSL configuration generator.
HTTP Basic authentication covers the entire root (/
) of the site, and can
also apply to proxied connections.
To allow LetsEncrypt and other ACME based certificate issuing programs to
function, the http://<anything>/.well-known/acme-challenge
uri on all hosts
is served from a directory specified by the acme_challenge_dir
variable. This
also works for redirects, basic authentication required, and reverse proxied
sites.
If the role or configuration has changed and the templated files are changed when the role is re-run, backups of the configuration files will be generated on the target host.
Before restarting the nginx
daemon on the host system, the entire
configuration will be checked by running nginx -t
by the test-nginx-config
handler. If this handler fails, it will give the running admin a chance to fix
any configuration problems prior to restarting the daemon, but will leave the
configuration in a broken state.
This is an opinionated role and only handles the most common use cases. It does not handle:
-
Every configuration option available in nginx. The official nginx role has many more configuration options exposed, at a cost of being much more complicated to configure.
-
Complicated redirect rules. The grammar for these was too complicated to make into a general case, so if they're required use the
extra_config
which is loaded into theserver {}
configuration scope, and specify rules using the rewrite module.extra_config
also added to the config ifstrip_request_uri
is set - this handles a basic full-site redirect to another URL, along with any custom 301 redirects inextra_config
-
Wildcard matching of domains. These were generally done to host many sites behind one TLS certificate, which is less needed now that we have LetsEncrypt. Define site aliases instead, setting
cert_name
and use SAN to generate a multi-domain certificate.
This is a bit of a chicken/egg problem. Here's one solution:
-
Run the
acme
role with no config to create the challenge dir and user accounts that will own that dir. -
Run this role without TLS configured in the variable files, to create virtualhosts that can obtain http-01 challenges.
-
Run the
acme
role to obtain and install LetsEncrypt certificate for just thecert_name
domain. -
Configure TLS for all domains then rerun this role
-
Rerun the
acme
role to obtain and install certificates for all the domains. It will restartnginx
.
Or, use DNS based challenges with acme
, which don't depend on nginx serving
the challenges.
PHP via FastCGI can be enabled on a per-vhost basis by including:
php: true
within the vhost definition. The php
role must also be installed.
There are several global config options, which apply to all sites being hosted.
# http://nginx.org/en/docs/ngx_core_module.html#worker_processes
nginx_conf_worker_processes: "auto"
# http://nginx.org/en/docs/ngx_core_module.html#worker_connections
nginx_conf_worker_connections: 512
# http://nginx.org/en/docs/ngx_core_module.html#multi_accept
nginx_conf_multi_accept: "off"
# http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size
nginx_conf_client_max_body_size: "1m"
# location of TLS certificates
certificate_dir: "/etc/acme/certs"
# location of ACME Challenges (LetsEncrypt)
acme_challenge_dir: "/srv/acme"
# ACME software user name for setting permissions on challenge dir
# NOTE: this will cause failures if you haven't previously run the the acme
# role, so override it when that role isn't being used.
acme_username: "acme"
# block specific user agents (webscrapers)
blocked_user_agents: "DotBot|MJ12bot|SemrushBot|PetalBot|AhrefsBot"
The vhosts
is used to define virtualhosts on the nginx server. This is a list
of all available options:
vhosts:
- name: site.example.com # name of the server being used.
tls: true # whether or not to enable TLS. Requires that certificates be created.
cert_name: static.example.com # used to specify the filepath to the TLS certificate, if a multi-domain SAN cert is used. Default is to use the `name` value
owner: root # username of owner of static files for this virtualhost, used to delegate the ability to update a static site.
insecure_port: 80 # default http:// port
secure_port: 443 # default https:// port
auth_scope: "mysite" # which item in auth_scopes to use for passwords. Setting this enables HTTP Basic Auth.
proxy_pass: "http://localhost:8080" # set this to the URL to reverse proxy traffic to another service
custom_root: "/path/to/site/root" # set this to serve files from a nonstandard (not /srv/sites/<url>) location
autoindex: false # whether or not to automatically generate an index in directories that lack an index.html file
aliases: # list of domain aliases to redirect
- static.example.com
- www.example.com
redirect_url: https://google.com # destination for 301 redirection of the aliases
strip_request_uri: true # Set to true to strip off the path at the end of the URI when redirecting
php: false # set to true if you want to enable PHP FastCGI support. Must install php role
extra_config: | # Extra arbitrary configuration to put inside the server {} block
<arbitrary configuration>
To provide HTTP basic auth, you can create an item in auth_scopes
, which
gives a scope and lists of usernames and password.
This configuration is separate from the vhosts block so scopes can be reused on multiple sites, and so that passwords can be can be stored in a separate configuration file. The passwords are encrypted using salted SHA1.
auth_scopes:
- scope: mysite
users:
- name: ghopper
password: verysecurepassword
- name: dknuth
password: anotherpassword
- scope: othersite
users:
- name: aturing
password: yetanotherpw
vhosts:
- name: site.example.com
NOTE: Must create TLS certificates outside of this role. The recommended role to do this is the
acme
role.
vhosts:
- name: site.example.com
tls: true
vhosts:
- name: site.example.com
tls: true
proxy_pass: "http://localhost:8080"
- hosts: all
vars:
- vhosts:
- name: site.example.com
roles:
- nginx
There are many tests in the molecule/
directory, covering static, autoindexed
authenticated, redirect, and proxy examples.
If you want to add functionality to this role, please write tests to cover that functionality.
© 2020 Open Networking Foundation [email protected]
License: Apache-2.0
files/ffdhe2048.txt
was obtained from the Mozilla SSL configuration
generator website and appears to be under
MPL-2.0, as it came from the
mozilla/ssl-config-generator
repo.