mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 05:29:26 +08:00
* fix(plugin-file-manager): fix file issues * fix(plugin-file-manager): fix special char in windows
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
log_format apm '"$time_local" client=$remote_addr '
|
|
'method=$request_method request="$request" '
|
|
'request_length=$request_length '
|
|
'status=$status bytes_sent=$bytes_sent '
|
|
'body_bytes_sent=$body_bytes_sent '
|
|
'referer=$http_referer '
|
|
'user_agent="$http_user_agent" '
|
|
'upstream_addr=$upstream_addr '
|
|
'upstream_status=$upstream_status '
|
|
'request_time=$request_time '
|
|
'upstream_response_time=$upstream_response_time '
|
|
'upstream_connect_time=$upstream_connect_time '
|
|
'upstream_header_time=$upstream_header_time';
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /app/nocobase/packages/app/client/dist;
|
|
index index.html;
|
|
client_max_body_size 0;
|
|
|
|
access_log /var/log/nginx/nocobase.log apm;
|
|
|
|
location /storage/uploads/ {
|
|
alias /app/nocobase/storage/uploads/;
|
|
autoindex off;
|
|
}
|
|
|
|
location / {
|
|
root /app/nocobase/packages/app/client/dist;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location ^~ /api/ {
|
|
proxy_pass http://127.0.0.1:13000/api/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection 'upgrade';
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
}
|