Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kstep/cuprum


https://github.com/kstep/cuprum

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Nginx configuration example:

```nginx
server {
listen 9898;

root /home/kstep/git/cuprum/client/dest;

location / {
try_files $uri @backend;
}

location @backend {
include scgi_params;
scgi_pass localhost:9000;
}
}
```