buildpack-nginx
buildpack-nginx copied to clipboard
nginx buildpack
Hi! I've changed the buildpack to statically compile nginx including all dependencies (the result is cached so it's fast the next time round). While it works seamlessly on my Digital...
Hi! I get the following errors when I try to push an app... Any idea what that could be? All other build packs with as usual. ``` remote: HEAD is...
Hi, All other buildpacks I've seen follow 12factor principles and "vendor" any required dependencies into the app directory. Take an Apache buildpack for example https://github.com/Kloadut/heroku-buildpack-static-apache/blob/master/bin/compile The package approach causes issues...
this will speed up deployment a bit
Is there any way to detect if nginx is already installed before doing the apt-get update and apt-get install nginx? I'm fairly new to dokku, so I'm not sure if...
Would like to request enabling basic gzip settings/expire headers in the nginx config by default: ``` gzip on; gzip_static on; gzip_http_version 1.1; gzip_vary on; gzip_comp_level 6; gzip_disable “MSIE [1-6].(?!.*SV1)”; gzip_proxied...