Skip to content
This repository was archived by the owner on Jan 6, 2021. It is now read-only.

Commit fbec547

Browse files
aptalcathelamer
authored andcommitted
turn off resty core to get rid of error in log
1 parent e511d36 commit fbec547

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
267267

268268
## Versions
269269

270+
* **27.10.19:** - Turn off lua resty core to get rid of error message in the log (existing users will have to delete `/config/nginx/nginx.conf` and restart the container).
270271
* **26.10.19:** - Add new package for stream-geoip2, remove geoip2 module patch.
271272
* **24.10.19:** - Add php7-pecl-imagick.
272273
* **23.10.19:** - Update Host header in `proxy.conf` to fix CSRF issues.

readme-vars.yml

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ app_setup_nginx_reverse_proxy_block: ""
126126

127127
# changelog
128128
changelogs:
129+
- { date: "27.10.19:", desc: "Turn off lua resty core to get rid of error message in the log (existing users will have to delete `/config/nginx/nginx.conf` and restart the container)." }
129130
- { date: "26.10.19:", desc: "Add new package for stream-geoip2, remove geoip2 module patch." }
130131
- { date: "24.10.19:", desc: "Add php7-pecl-imagick." }
131132
- { date: "23.10.19:", desc: "Update Host header in `proxy.conf` to fix CSRF issues." }

root/defaults/nginx.conf

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2018/04/07 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/nginx.conf
1+
## Version 2019/10/27 - Changelog: https://github.com/linuxserver/docker-letsencrypt/commits/master/root/defaults/nginx.conf
22

33
user abc;
44
worker_processes 4;
@@ -76,7 +76,8 @@ http {
7676
##
7777
include /etc/nginx/conf.d/*.conf;
7878
include /config/nginx/site-confs/*;
79-
79+
lua_load_resty_core off;
80+
8081
}
8182

8283

0 commit comments

Comments
 (0)