blob: 102c3e70524233279bbc17f2afd42cf0635db74b [file] [log] [blame]
#!/bin/sh
cat <<BANNER
----------------------------------------------------------------------
Thanks for using nginx!
Please find the official documentation for nginx here:
* https://nginx.org/en/docs/
Please subscribe to nginx-announce mailing list to get
the most important news about nginx:
* https://nginx.org/en/support.html
Commercial subscriptions for nginx are available on:
* https://nginx.com/products/
----------------------------------------------------------------------
BANNER
if [ ! -d /var/cache/nginx ]; then
mkdir -p /var/cache/nginx
fi
exit 0