All Projects → shakyShane → nginx-cors-plus

shakyShane / nginx-cors-plus

Licence: other
A simple nginx proxy that you can put in front of any domain to enable CORS.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to nginx-cors-plus

upload-file-to-backblaze-b2-from-browser-example
Demonstrates calling the b2_upload_file Backblaze B2 Cloud Storage API from a web browser using AJAX.
Stars: ✭ 28 (-12.5%)
Mutual labels:  cors
terraform-aws-api-gateway-enable-cors
Easily add an OPTIONS method to an API Gateway resource to enable CORS
Stars: ✭ 56 (+75%)
Mutual labels:  cors
lua-resty-cors
It's the implement of CORS on OpenResty
Stars: ✭ 53 (+65.63%)
Mutual labels:  cors
CORS-Proxy-Server
代理转发 CORS 跨域资源请求
Stars: ✭ 13 (-59.37%)
Mutual labels:  cors
Natours
An awesome tour booking web app written in NodeJS, Express, MongoDB 🗽
Stars: ✭ 94 (+193.75%)
Mutual labels:  cors
gotify-push
Chrome Extension for Send Push Notification 🔔 to gotify/server ☁
Stars: ✭ 32 (+0%)
Mutual labels:  cors
laravel-cors
Laravel cors
Stars: ✭ 19 (-40.62%)
Mutual labels:  cors
silverstripe-graphql-jwt
JWT Authentication for GraphQL
Stars: ✭ 17 (-46.87%)
Mutual labels:  cors
apollobank
A full stack GraphQL banking application using React, Node & TypeScript.
Stars: ✭ 203 (+534.38%)
Mutual labels:  cors
poop
Firefox extension that prevents sending Origin headers when they are least likely to be necessary, to protect your privacy.
Stars: ✭ 36 (+12.5%)
Mutual labels:  cors
aws-lambda-router
Improved routing for AWS Lambda like SNS and ApiGateway
Stars: ✭ 90 (+181.25%)
Mutual labels:  cors
sanic-ext
Extended Sanic functionality
Stars: ✭ 26 (-18.75%)
Mutual labels:  cors
laravel-api-boilerplate-passport
An API Boilerplate to create a ready-to-use REST API in seconds.
Stars: ✭ 20 (-37.5%)
Mutual labels:  cors
mezzio-cors
CORS component for Mezzio and other PSR-15 middleware runners.
Stars: ✭ 13 (-59.37%)
Mutual labels:  cors
koa-restful-boilerplate
A boilerplate for koa2 RESTful API development
Stars: ✭ 31 (-3.12%)
Mutual labels:  cors
simple-cors
Simply usable CORS middleware / interceptor for Clojure
Stars: ✭ 26 (-18.75%)
Mutual labels:  cors
keycloak-spring-boot-rest-angular-demo
Demo for configuring Keycloak authentication for a spring-boot rest service and AngularJs web client
Stars: ✭ 24 (-25%)
Mutual labels:  cors
node-cors-server
A test application that helps illustrate CORS while both in a working state and a non-working state across simple and complex request scenarios.
Stars: ✭ 72 (+125%)
Mutual labels:  cors
horse-cors
No description or website provided.
Stars: ✭ 31 (-3.12%)
Mutual labels:  cors
node-typescript-starter
REST API using Node with typescript, KOA framework. TypeORM for SQL. Middlewares JWT (auth), CORS, Winston Logger, Error, Response
Stars: ✭ 19 (-40.62%)
Mutual labels:  cors

nginx-cors-plus

A simple nginx proxy that you can put in front of any domain to enable CORS. Handles the preflight requests that can occur when trying to use application/json as the request content-type.

** Docker Run: **

docker run -p 8080:80 -e TARGET=example.com shakyshane/nginx-cors-plus

** Docker Compose: **

version: '2'
services:
  nginx:
    image: shakyshane/nginx-cors-plus
    ports:
      - 8090:80
    environment:
      - TARGET=https://example.com
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].