=head1 NAME OpenResty::Spec::Install::Apache - Configuring OpenResty.pm with Apache2 + mod_fcgid =head1 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] AllowEncodedSlashes On Options ExecCGI FollowSymLinks # the line below is optional: SetOutputFilter DEFLATE AddHandler fcgid-script .fcgi Allow from all # File /some/path/to/my/doc/root/openresty.fcgi (remember chmod +x this!) #!/bin/sh exec openresty fastcgi =head1 DESCRIPTION OpenResty.pm could be run as a FastCGI application with C or C. See L for sample configurations. Note that when using with C to do gzip/deflate compression, it's recommended to set C to C<0>. Apache's C should be turned on or the following model request would result in a 404 error: http://server:1234/=/model/urls/~/http%3A%2F%2Fwww.yahoo.cn%2Fhello%3Fabc%3D32 =head1 AUTHOR Agent Zhang (agentzh) C<< >>. =head1 SEE ALSO L, L, L.