Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/liut/qrd

QRcode generate with fastcgi service
https://github.com/liut/qrd

fastcgi golang image qrcode

Last synced: 8 days ago
JSON representation

QRcode generate with fastcgi service

Awesome Lists containing this project

README

        

QRD
====

QRcode generate with fastcgi service

## build

make

## change nginx host config

````

location /qr {
fastcgi_pass 127.0.0.1:9001;
include fastcgi_params;
}

````

## test

browse: `/qr?c=Hello%20QRcode`

## Environment

````
QRD_LISTEN="127.0.0.1:9001"
QRD_SIZE=160
````