The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

OpenResty::Spec::Install::Apache - Configuring OpenResty.pm with Apache2 + mod_fcgid

SYNOPSIS

    # File /opt/apache2/conf/httpd.conf
    ...
    LoadModule fcgid_module modules/mod_fcgid.so
    LoadModule rewrite_module modules/mod_rewrite.so
    # the line below is optional:
    LoadModule deflate_module modules/mod_deflate.so
    DocumentRoot "/some/path/to/my/doc/root"
    RewriteEngine on
    RewriteRule ^/=/ /openresty.fcgi [QSA,L]
    <Location />
        Options ExecCGI FollowSymLinks
        # the line below is optional:
        SetOutputFilter DEFLATE
        AddHandler fcgid-script .fcgi
        Allow from all
    </Location>

    # File /some/path/to/my/doc/root/openresty.fcgi (remember chmod +x this!)
    #!/bin/sh
    exec openresty fastcgi

DESCRIPTION

OpenResty.pm could be run as a FastCGI application with mod_fcgid or mod_fastcgi. See "SYNOPSIS" for sample configurations.

Note that when using with mod_deflate to do gzip/deflate compression, it's recommended to set frontend.use_gzip to 0.

AUTHOR

Agent Zhang (agentzh) <agentzh@yahoo.cn>.

SEE ALSO

OpenResty::Spec::Install::Lighttpd, OpenResty::Spec::Install, OpenResty.