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