comparison nginx.conf @ 11:bbafc54bbd26

fix ssl renew
author Vadim Filimonov <fffilimonov@yandex.ru>
date Thu, 28 Jul 2022 16:10:05 +0300
parents dfc36e7ed22c
children
comparison
equal deleted inserted replaced
10:a7187a447835 11:bbafc54bbd26
14 14
15 access_log off; 15 access_log off;
16 error_log off; 16 error_log off;
17 17
18 server { 18 server {
19 listen 80; 19 listen 80;
20 location ~ "^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)$" {
21 default_type text/plain;
22 return 200 "$1.ZVfdXrOoSbmeTJ4l7OuY0SI388jxO8JHcxGPdqM1Jgk";
23 }
24
25 include nginx.default.conf; 20 include nginx.default.conf;
26 include config/nginx.custom.*.conf; 21 include config/nginx.custom.*.conf;
27 include config/nginx.conf; 22 include config/nginx.conf;
28 } 23 }
29 include config/nginx.ssl.*.conf; 24 include config/nginx.ssl.*.conf;