> For the complete documentation index, see [llms.txt](https://docs.rtlcopymemory.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rtlcopymemory.com/file-transfers/catching-files-over-http-s-nginx.md).

# Catching Files over HTTP/S (Nginx)

## **Create a Directory to Handle Uploaded Files**

```bash
sudo mkdir -p /var/www/uploads/SecretUploadDirectory
```

## **Change the Owner to www-data**

```bash
sudo chown -R www-data:www-data /var/www/uploads/SecretUploadDirectory
```

**Create Nginx Configuration File**

Create the Nginx configuration file by creating the file `/etc/nginx/sites-available/upload.conf` with the contents:

## Catching Files over HTTP/S

```shell-session
server {
    listen 9001;
    
    location /SecretUploadDirectory/ {
        root    /var/www/uploads;
        dav_methods PUT;
    }
}
```

## **Symlink our Site to the sites-enabled Directory**

```bash
sudo ln -s /etc/nginx/sites-available/upload.conf /etc/nginx/sites-enabled/
```

## Start Nginx

```bash
sudo systemctl restart nginx.service
```

## Errors

If we get any error messages, check `/var/log/nginx/error.log`

```bash
tail -2 /var/log/nginx/error.log
```

```bash
ss -lnpt | grep <port>
```

```bash
ps -ef | grep <PID>
```

### **Remove NginxDefault Configuration**

```bash
sudo rm /etc/nginx/sites-enabled/default
```

## **Upload File Using cURL**

```bash
curl -T /etc/passwd http://localhost:9001/SecretUploadDirectory/users.txt
```

{% hint style="info" %}
Once we have this working, a good test is to ensure the directory listing is not enabled by navigating to `http://localhost/SecretUploadDirectory`
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.rtlcopymemory.com/file-transfers/catching-files-over-http-s-nginx.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
