2221: Add support for custom NGINX config r=mergify[bot] a=easybe

## What type of PR?

enhancement

## What does this PR do?

Add support for custom NGINX config. Including *.conf files in /etc/nginx/conf.d same as the default NGINX configuration gives the user more flexibility.

### Related issue(s)

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [ ] In case of feature or enhancement: documentation updated accordingly
- [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


Co-authored-by: Ezra Buehler <ezra@easyb.ch>
master
bors[bot] 2 years ago committed by GitHub
commit 3327500f96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -271,6 +271,8 @@ http {
proxy_pass http://$admin/internal$request_uri;
}
}
include /etc/nginx/conf.d/*.conf;
}
mail {

@ -0,0 +1 @@
Add support for custom NGINX config in /etc/nginx/conf.d.
Loading…
Cancel
Save