https://github.com/liut/qrd
QRcode generate with fastcgi service
https://github.com/liut/qrd
fastcgi golang image qrcode
Last synced: 4 months 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 10 years ago)
- Default Branch: master
- Last Pushed: 2019-08-13T12:41:27.000Z (over 6 years ago)
- Last Synced: 2025-01-28T21:47:40.172Z (about 1 year 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
````