# prod fuzzy

the location for archiving all the fuzzybench projects

## overview

the fuzzybench superdomain has a single nginx config and uses flat file serving for all the sites.

- there are no active services hosted on fuzzybench
- projects should rely on static serving
- if external services are used, make sure to note them in the md file and only host them from IWS or sandbox


# Server Config

```sh
server {
    server_name fuzzybench.com;

    location /files {
        alias /web/fuzzybench.com/;
        autoindex on;    
    }

    location / {
        root /web/fuzzybench.com/.static/;
        index fuzzybench.html;    
    }    
}
```