Mercurial Hosting > hghosting
annotate 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 |
rev | line source |
---|---|
0 | 1 worker_processes 4; |
2 | |
3 events { | |
4 worker_connections 4096; | |
5 } | |
6 | |
7 http { | |
8 include mime.types; | |
9 default_type application/octet-stream; | |
10 sendfile on; | |
11 keepalive_timeout 65; | |
12 resolver 8.8.8.8 1.1.1.1 valid=600s; | |
13 resolver_timeout 10s; | |
14 | |
15 access_log off; | |
16 error_log off; | |
17 | |
18 server { | |
11 | 19 listen 80; |
0 | 20 include nginx.default.conf; |
21 include config/nginx.custom.*.conf; | |
22 include config/nginx.conf; | |
23 } | |
24 include config/nginx.ssl.*.conf; | |
25 } |