annotate host/startup/nginx/nginx.default.conf.luan @ 2038:b4b3017ac28d acme-tiny tip

cleanup setup dir
author Violet7
date Sat, 08 Nov 2025 04:53:29 -0800
parents a4435e2e3417
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2037
a4435e2e3417 Edit scripts to use acme-tiny
Violet7
parents: 1930
diff changeset
1 local rootDir = ...
1632
0344a535b1db add doc
fffilimonov
parents:
diff changeset
2
0344a535b1db add doc
fffilimonov
parents:
diff changeset
3 %>
0344a535b1db add doc
fffilimonov
parents:
diff changeset
4 client_max_body_size 32m;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
5
0344a535b1db add doc
fffilimonov
parents:
diff changeset
6 proxy_http_version 1.1;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
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
0344a535b1db add doc
fffilimonov
parents:
diff changeset
10 error_log <%=rootDir%>/logs/nginx_error.log;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
11
0344a535b1db add doc
fffilimonov
parents:
diff changeset
12 proxy_set_header X-Forwarded-Proto $scheme;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
13 proxy_set_header X-Real-IP $remote_addr;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
14
0344a535b1db add doc
fffilimonov
parents:
diff changeset
15 charset utf-8;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
16
0344a535b1db add doc
fffilimonov
parents:
diff changeset
17 location ~ /(?<path>.*) {
1742
d778f1f2598a make server side events proxy work
Vadim Filimonov <fffilimonov@yandex.ru>
parents: 1632
diff changeset
18 chunked_transfer_encoding off;
1632
0344a535b1db add doc
fffilimonov
parents:
diff changeset
19 proxy_cache_key $scheme$host$request_uri;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
20 proxy_cache nginx_cache;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
21 proxy_cache_revalidate on;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
22 proxy_cache_min_uses 1;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
23 proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
24 proxy_cache_background_update on;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
25 proxy_cache_lock on;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
26 add_header X-Cache-Status $upstream_cache_status;
1930
2b5eccebddd9 increase read timeout for sse
fffilimonov
parents: 1742
diff changeset
27 proxy_read_timeout 24h;
1632
0344a535b1db add doc
fffilimonov
parents:
diff changeset
28 proxy_pass http://luan;
0344a535b1db add doc
fffilimonov
parents:
diff changeset
29 }
0344a535b1db add doc
fffilimonov
parents:
diff changeset
30 <%