nostone_loan.conf 341 B

12345678910111213141516
  1. server{
  2. listen 80;
  3. root /var/www/nostone_loan;
  4. location / {
  5. rewrite ^/backend/(.*)$ /$1 break;
  6. uwsgi_connect_timeout 3600s;
  7. uwsgi_read_timeout 3600s;
  8. uwsgi_send_timeout 3600s;
  9. uwsgi_pass 127.0.0.1:9001;
  10. include uwsgi_params;
  11. }
  12. client_max_body_size 100M;
  13. }