mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Made apache start out on cgi and added back the default apache options
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@635 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
55b6e884c5
commit
d4aead0d50
1 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
|||
# General Apache options
|
||||
AddHandler fastcgi-script .fcgi
|
||||
AddHandler cgi-script .cgi
|
||||
Options +FollowSymLinks +ExecCGI
|
||||
|
||||
# Redirect all requests not available on the filesystem to Rails
|
||||
RewriteEngine On
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^(.*)$ /dispatch.fcgi?$1 [QSA,L]
|
||||
RewriteRule ^(.*)$ /dispatch.cgi?$1 [QSA,L]
|
||||
|
||||
ErrorDocument 500 /500.html
|
||||
# In case Rails experiences terminal errors
|
||||
ErrorDocument 500 /500.html
|
Loading…
Reference in a new issue