From: Ben Beltran Date: Mon, 12 Nov 2018 22:15:18 +0000 (+0100) Subject: Add an example configuration X-Git-Tag: 1.0.0^2~2^2~1 X-Git-Url: https://git.r.bdr.sh/rbdr/ngx_http_office_hours_filter_module/commitdiff_plain/2854e3fe7677579ff0d7502592dd31576cc60edd?ds=inline Add an example configuration --- diff --git a/doc/example_configuration b/doc/example_configuration new file mode 100644 index 0000000..136f7b8 --- /dev/null +++ b/doc/example_configuration @@ -0,0 +1,15 @@ +server { + + listen 80; + + root /var/www/blog; + index index.html index.htm; + + server_name blog.unlimited.pizza; + + office_hours 8:30-20 10-16 closed; + + location / { + try_files $uri $uri/ =404; + } +}