can't find uploaded files
i use rustypaste not on / location
```
location /paste {
proxy_pass http://127.0.0.1:7331/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
add_header X-XSS-Protection "1; mode=block";
add_header X-Frame-Options "sameorigin";
add_header X-Content-Type-Options "nosniff";
}
```
when i uploading file, it gives me wrong location (ip/file, not ip/paste/file)
also i can't find uploaded file myself
1 条评论