https://github.com/kstep/cuprum
https://github.com/kstep/cuprum
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kstep/cuprum
- Owner: kstep
- Created: 2014-11-16T13:13:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-26T18:58:10.000Z (almost 11 years ago)
- Last Synced: 2024-12-27T00:41:46.099Z (over 1 year 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;
}
}
```