Go to file
Jose Diaz-Gonzalez 0d2e4c3ee6
feat: use charset utf-8 by default
Closes #40
2020-06-11 15:33:31 -04:00
bin feat: enable the charset module by default 2020-06-11 15:31:47 -04:00
conf feat: use charset utf-8 by default 2020-06-11 15:33:31 -04:00
.gitignore add .gitignore 2016-07-27 20:48:14 -04:00
LICENSE Relicense to CC0 2013-11-11 16:09:17 -08:00
Makefile Disable a shellcheck rule 2016-09-20 01:31:19 -06:00
README.md Update README.md 2017-03-28 17:42:13 -06:00

README.md

Dokku Buildpack: nginx

This is the official dokku buildpack for static websites, powered by nginx.

Usage

All static files that you want to serve should be in the root directory of your repository. No need to use a seperate www folder. buildpack-nginx will automatically download the buildpack, download NGINX, compile it, and install it. The next time you push your project, the buildpack will reuse the precompiled binaries.

Dokku

To trigger detection of this buildpack you need to add a dotfile:

Add an empty file called .static to your root directory of your web project (regardless if you use a custom value for NGINX_ROOT)

Heroku

Heroku users can use this buildpack by running the following command:

heroku buildpacks:set https://github.com/dokku/buildpack-nginx.git

Configuration

You can override the nginx root via setting the NGINX_ROOT environment variable. This should be a relative path in your repository.

You may completely override the built-in nginx config by placing an app-nginx.conf.sigil file in the root, modeled after our own conf/app-nginx.conf.sigil. This will be used inside of the container, and not by the host Dokku instance. See the sigil project for more information concerning the sigil format.

Credits and License

buildpack-nginx is licensed under the CC0 1.0 Universal license and has been informed by many similar projects on the web.

Florian Heinemann