Skip to content

Commit

Permalink
Merge pull request #27 from DenisKusakin/main
Browse files Browse the repository at this point in the history
Fix file size limit
  • Loading branch information
mitagmio authored Oct 31, 2023
2 parents 200e147 + 24d4bfc commit 4ffbab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ton-drive-backend/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ http {
server {
listen 8051;
server_name backend;
client_max_body_size 0;

location / {
proxy_pass http://service:3000;
Expand Down
1 change: 1 addition & 0 deletions ton-drive-frontend/nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
server {
listen 8052;
server_name web_app;
client_max_body_size 0;
location / {
# This would be the directory where your React app's static files are stored at
root /usr/share/nginx/html;
Expand Down

0 comments on commit 4ffbab7

Please sign in to comment.