mirror of https://github.com/Budibase/budibase.git
3 changed files with 38 additions and 3 deletions
@ -1,3 +1,13 @@ |
|||
FROM nginx:latest |
|||
COPY .generated-nginx.prod.conf /etc/nginx/nginx.conf |
|||
COPY error.html /usr/share/nginx/html/error.html |
|||
|
|||
# nginx.conf |
|||
# use the default nginx behaviour for *.template files which are processed with envsubst |
|||
# override the output dir to output directly to /etc/nginx instead of /etc/nginx/conf.d |
|||
ENV NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx |
|||
COPY .generated-nginx.prod.conf /etc/nginx/templates/nginx.conf.template |
|||
|
|||
# Error handling |
|||
COPY error.html /usr/share/nginx/html/error.html |
|||
|
|||
# Default environment |
|||
ENV PROXY_RATE_LIMIT_WEBHOOKS_PER_SECOND=10 |
|||
Loading…
Reference in new issue