Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/liut/qrd
- Owner: liut
- License: mit
- Created: 2015-12-23T16:04:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-08-13T12:41:27.000Z (over 5 years ago)
- Last Synced: 2024-06-20T00:43:20.905Z (8 months ago)
- Topics: fastcgi, golang, image, qrcode
- Language: Go
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
````