vishaltelangre / cors-proxy

Fork of https://github.com/afeld/jsonp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CORS Proxy Server

Setup

npm install
npm -g install pm2
pm2 start process.yml

NGINX Configuration

location /cors-proxy {
  rewrite /cors-proxy(.*) /$1  break;
  proxy_pass http://localhost:8000;
}

Credits

This is a fork of @afeld's https://github.com/afeld/jsonp. I am really thankful for his great work!

About

Fork of https://github.com/afeld/jsonp

License:MIT License


Languages

Language:JavaScript 76.0%Language:HTML 21.9%Language:CSS 2.2%