wkcrm.conf 301 B

1234567891011121314151617
  1. server {
  2. listen 80;
  3. server_name localhost 47.103.60.8;
  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. }