Sha256: 8ed3530f08dfcd2fc0098b621aabd3c6a0a21e2589ee2898412a7686da47fcde

Contents?: true

Size: 1016 Bytes

Versions: 5

Compression:

Stored size: 1016 Bytes

Contents

# Apache configuration file.
# Change as appropriate for your apache configuration.
# $Id$

Listen 9999 

PidFile /var/tmp/httpd.pid
TypesConfig /etc/mime.types
DocumentRoot /home/gmosx/navel/nitro/examples/no_xsl_blog/public

# The error log.
ErrorLog log/apache.error_log
CustomLog log/access_log combined

# Load dynamic modules.
LoadModule fastcgi_module /usr/local/apache2/modules/mod_fastcgi.so
# LoadModule rewrite_module /usr/local/apache2/modules/mod_rewrite.so

FastCgiIpcDir /var/tmp/fcgi
# gmosx: if you have installed the distribution the -I is not needed.
FastCgiConfig -initial-env 'RUBYOPT=-rubygems -I/home/gmosx/navel/nitro/lib -I/home/gmosx/navel/og/lib -I/home/gmosx/navel/glue/lib'
AddHandler fastcgi-script fcgi rb
Options +FollowSymLinks +ExecCGI

RewriteEngine On
RewriteRule ^/([\/\-_a-zA-Z0-9]+)?$ /fcgi.rb [QSA,L]
RewriteRule	^/([\/\-_a-zA-Z0-9]+)?\?([\-_a-zA-Z0-9=;&%]*)$ /fcgi.rb?$2 [QSA,L]

# You can also point these error messages to a controller/action
# ErrorDocument 500 /500.html

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
nitro-0.15.0 examples/no_xsl_blog/conf/apache.conf
nitro-0.13.0 examples/no_xsl_blog/conf/apache.conf
nitro-0.14.0 examples/no_xsl_blog/conf/apache.conf
nitro-0.16.0 examples/no_xsl_blog/conf/apache.conf
nitro-0.17.0 examples/no_xsl_blog/conf/apache.conf