e9939ef9dc
Add GitAtlas deploy assets, DATA_FILE support for isolated server data, and port documentation for sourcing.simosen.cn. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
507 B
Plaintext
18 lines
507 B
Plaintext
location ^~ /.well-known/ {
|
|
root /www/wwwroot/sourcing.simosen.cn;
|
|
allow all;
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:9477;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_read_timeout 300s;
|
|
client_max_body_size 32m;
|
|
}
|