Code Monkey home page Code Monkey logo

apache-geoip's Introduction

NAME
    Apache::Geo::IP - Look up country by IP Address

SYNOPSIS
    # in httpd.conf 
    # PerlModule Apache::HelloIP 
    #<Location /ip> 
    #   SetHandler perl-script 
    #   PerlHandler Apache::HelloIP 
    #   PerlSetVar GeoIPDBFile "/usr/local/share/geoip/GeoIP.dat" 
    #   PerlSetVar GeoIPFlag Standard 
    #</Location>

    # file Apache::HelloIP

    use Apache::Geo::IP; use strict;

    use Apache::Constants qw(OK);

    sub handler { 
       my $r = Apache::Geo::IP->new(shift);
       $r->content_type('text/plain'); 
       my $country = uc($r->country_code_by_addr());

       $r->print($country);
  
       return OK;
    }

DESCRIPTION
    This module constitutes a mod_perl (both versions 1 and 2) interface 
    to the Geo::IP and Geo::Mirror modules. Geo::IP is used to look up in 
    a database a country of origin of an IP address, while Geo::Mirror
    is used to select a mirror by country from a specified list. See
    the documentation for Apache::Geo::IP and Apache::Geo::Mirror
    for more details.

    The included tests require Apache::Test, which can be obtained
    in the mod_perl-2 sources or in the httpd-test distribution.
    These tests need a network connection to run; some may fail
    due to timeouts upon doing certain name lookups.

    The mod_perl-2 modules included here, with prefix Apache2::*,
    will only work with mod_perl-1.999022 and above (RC5 or greater
    of the CPAN distribution).

PPM PACKAGE
    A Win32 ppm package, suitable for use with ActivePerl
    compatible Perl packages, is available at
        http://theoryx5.uwinnipeg.ca/ppmpackages/
    for ActivePerl 6xx and at
        http://theoryx5.uwinnipeg.ca/ppms/
    for ActivePerl 8xx. To install, within the ppm shell set the 
    repository to
        http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer
    for ActivePerl 6xx and to
        http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer58
    for ActivePerl 8xx, and then
        ppm> install Apache-GeoIP

AUTHOR

    The look-up code for associating a country with an IP address 
    is based on the GeoIP library and the Geo::IP Perl module, and is 
    Copyright (c) 2002, T.J. Mather, [email protected], New York, NY, 
    USA. See http://www.maxmind.com/ for details. The mod_perl interface 
    is Copyright (c) 2002, Randy Kobes <[email protected]>.

   All rights reserved.  This package is free software; you can redistribute 
   it and/or modify it under the same terms as Perl itself.

apache-geoip's People

Contributors

rkobes avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.