Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymous committed Mar 21, 2024
1 parent 180402b commit bd9fb54
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions docker/nginx.conf.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
server {

listen 80;
listen [::]:80;
server_name localhost;

client_max_body_size 50M; //文件大小限制,默认1m
client_header_timeout 1m;
client_body_timeout 1m;
proxy_connect_timeout 60s;
proxy_read_timeout 1m;
proxy_send_timeout 1m;

location / {
root /usr/share/nginx/html;
index index.html index.htm;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moneynote-pc",
"version": "1.0.82",
"version": "1.0.83",
"private": true,
"scripts": {
"analyze": "cross-env ANALYZE=1 max build",
Expand Down

0 comments on commit bd9fb54

Please sign in to comment.