UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

27 lines (20 loc) 437 B
worker_processes 1; events { worker_connections 1024; } http { include nginx-mime.conf; default_type application/octet-stream; sendfile on; #tcp_nopush on; keepalive_timeout 65; gzip on; server { listen 8080; server_name localhost; location / { root /path/to/node-buffet/test/files; index index.html; } } }