Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kstep/cuprum
https://github.com/kstep/cuprum
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kstep/cuprum
- Owner: kstep
- Created: 2014-11-16T13:13:20.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-26T18:58:10.000Z (over 9 years ago)
- Last Synced: 2024-10-11T23:47:40.199Z (2 months ago)
- Language: CoffeeScript
- Size: 406 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
}
}
```