wkcrm.conf 298 B

1234567891011121314151617
  1. server {
  2. listen 80;
  3. server_name crm.topxuetang.com;
  4. client_max_body_size 100M;
  5. location / {
  6. root /usr/share/nginx/html;
  7. index index.html index.htm;
  8. location /api/ {
  9. proxy_pass http://localhost:8443;
  10. }
  11. }
  12. }