server { listen 8088; charset utf-8; location /file/ { alias /home/admin/project/scancloud-markingcloud/static/; add_header Access-Control-Allow-Origin *; } location ^~ /api/ { proxy_pass http://localhost:9088; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }