nginx.conf 219 B

123456789101112
  1. server {
  2. listen 80;
  3. server_name www.mooctest.org;
  4. client_max_body_size 3024m;
  5. location / {
  6. root /usr/share/nginx/html;
  7. index index.html index.htm;
  8. }
  9. location /api {
  10. proxy_pass http://backend:8090;
  11. }
  12. }