Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jorgebay/cpp-driver-sut


https://github.com/jorgebay/cpp-driver-sut

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# C/C++ Driver SUT

## Web server configuration

This SUT requires a web server that support FastCGI.

### Nginx configuration

```
server {
listen :8080;

location ~ /.* {
fastcgi_pass unix: ;
fastcgi_keep_conn on;
include fastcgi_params;
}
}
```

## To build

Requires the cassandra-cpp-driver-dev and libuv-dev packages.

```
make
```

## To run

```bash
./sut
```