Mercurial Hosting > luan
annotate host/startup/nginx/nginx.default.conf.luan @ 1762:7d2297155ee3
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 19 May 2023 18:08:46 -0600 |
parents | d778f1f2598a |
children |
rev | line source |
---|---|
1632 | 1 local rootDir, leKey = ... |
2 | |
3 %> | |
4 client_max_body_size 32m; | |
5 | |
6 proxy_http_version 1.1; | |
7 proxy_set_header Host $http_host; | |
1742
d778f1f2598a
make server side events proxy work
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
1632
diff
changeset
|
8 proxy_set_header Connection ''; |
d778f1f2598a
make server side events proxy work
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
1632
diff
changeset
|
9 |
1632 | 10 error_log <%=rootDir%>/logs/nginx_error.log; |
11 | |
12 proxy_set_header X-Forwarded-Proto $scheme; | |
13 proxy_set_header X-Real-IP $remote_addr; | |
14 | |
15 charset utf-8; | |
16 | |
17 location ~ "^/\.well-known/acme-challenge/([-_a-zA-Z0-9]+)$" { | |
18 default_type text/plain; | |
19 return 200 "$1.<%=leKey%>"; | |
20 } | |
21 | |
22 location ~ /(?<path>.*) { | |
1742
d778f1f2598a
make server side events proxy work
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
1632
diff
changeset
|
23 chunked_transfer_encoding off; |
1632 | 24 proxy_cache_key $scheme$host$request_uri; |
25 proxy_cache nginx_cache; | |
26 proxy_cache_revalidate on; | |
27 proxy_cache_min_uses 1; | |
28 proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504; | |
29 proxy_cache_background_update on; | |
30 proxy_cache_lock on; | |
31 add_header X-Cache-Status $upstream_cache_status; | |
32 proxy_pass http://luan; | |
33 } | |
34 <% |