7
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-06-26 00:42:35 +00:00

Fix nginx resolver address

This commit is contained in:
Régis Behmo 2020-06-14 15:46:32 +02:00
parent ca39b87ab6
commit 29c6741bba
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Bugfix] Fix nginx resolver address to address container restarts
- [Feature] Add `--limit=myplugin` option to `init` commands for limit execution of initialisation to certain services and plugins
## v3.12.6 (2020-06-01)

View File

@ -2,7 +2,7 @@
server_names_hash_bucket_size 128;
# Set a short ttl for proxies to allow restarts
resolver 127.0.0.1 [::1]:5353 valid=10s;
resolver 127.0.0.11 [::1]:5353 valid=10s;
# Configure logging to include scheme and server name
log_format tutor '$remote_addr - $remote_user [$time_local] $scheme://$host "$request" '