A URL Shortener with analytics based on Nginx and Redis

URL shortening is a technique on the World Wide Web in which a URL may be made substantially shorter and still direct to the required page. This is achieved by using a redirect which links to the web page that has a long URL. For example, the URL “https://example.com/assets/category_B/Foo/” can be shortened to “https://snip.ml/Foo”, and the URL “https://example.com/about/index.html” can be shortened to “https://snip.ml/h2iBY”. Often the redirect domain name is shorter than the original one. A friendly URL may be desired for messaging technologies that limit the number of characters in a message (for example SMS), for reducing the amount of typing required if the reader is copying a URL from a print source, for making it easier for a person to remember, or for the intention of a permalink.

Get Files @https://github.com/mouryaamit/Nginx-URL-Shortener

Setup

  • Start a redis instance
  • Build your nginx with lua-nginx-module and set-misc-nginx-module
  • Copy the lua script conf/lua/n3r/urlshortener_eval.lua to your own nginx conf/lua/n3r/ directory, and update the redis configurations in the connect function
  • Copy the html/shorten-ui.html to your own nginx html directory
  • Download lua-resty-redis and copy the lib/resty/redis.lua to your own nginx conf/lua/resty/ directory
  • Add the follow configurations to your nginx.conf, then start your nginx
http block: lua_package_path
server block: location a)shorten-ui.html b)shorten c)^/0[0-9a-zA-Z]{1,12}$
You could find these configurations in my conf/nginx.conf

Basic Usage

Create a short url

http://localhost:8088/shorten?url=http://www.google.com

NOTE: Do not forget the http:// prefix within the url parameter

Visit the short url

Just visit the url that the previous step returned

Web UI

http://localhost:8088/shorten-ui.html

NOTE: In this page, you could input a URL, then get the shorten form

Create a random short url

http://localhost:8088/shorten?url=http://www.google.com&random=true

Query source url by the short

http://localhost:8088/shorten-qrybyshort?url=http://t.cn/0asd

Leave a Reply

Your email address will not be published. Required fields are marked *