1

Windows 2003 Server で Ruby on Rails を動かそうとしています。Mongrel サービスと Apache (および RoR など) をインストールしました。

Mongrel だけを使用してアプリを提供すると、すべてが完璧に表示されます。

それで、今、私はApacheの設定に取り掛かっています...どうやら私はそれを正しく理解できないようです。自分のページにアクセスすると、正しい HTML が返されますが、Content-Type が html や xhtml ではなく text/plain に設定されて返されます... さらに、CSS ページの 1 つにアクセスしようとすると、 500 Internal Server エラーを取得します (HTML として返され、text/plain Content-Type で返されます)。

これが私の仮想ホストファイルです(どんな助けも非常に非常に高く評価されます!):

NameVirtualHost *:8080


#Proxy balancer section (create one for each ruby app cluster)
<Proxy balancer://myapp_cluster>
  Order allow,deny
  Allow from all
  BalancerMember http://rails.localdomain.com:3010
  #BalancerMember http://myapp:3011
</Proxy>




#Virtual host section (create one for each ruby app you need to publish)
<VirtualHost *:8080>
  ServerName rails.localdomain.com
  DocumentRoot c:/www/app/public/

  <Directory c:/www/app/public/ >
      Options Indexes FollowSymLinks MultiViews
      AllowOverride All
      Order allow,deny
      allow from all
  </Directory>

  ProxyRequests Off
  ProxyPass / balancer://myapp_cluster
  ProxyPassReverse / balancer://myapp_cluster
  ProxyPreserveHost On
  #SetOutputFilter INFLATE;DEFLATE
  #SetOutputFilter proxy-html

  #log files
  ErrorLog c:/www/log/app_error.log
  # Possible values include: debug, info, notice, warn, error, crit,
  # alert, emerg.
  LogLevel warn
  CustomLog c:/www/log/app_access.log combined

  #Rewrite stuff
   RewriteEngine On

  # Check for maintenance file and redirect all requests
  RewriteCond %{DOCUMENT_ROOT}/system/maintenance.html -f
  RewriteCond %{SCRIPT_FILENAME} !maintenance.html
  RewriteRule ^.*$ /system/maintenance.html [L]

  # Rewrite index to check for static
  RewriteRule ^/$ /index.html [QSA] 

  # Rewrite to check for Rails cached page
  RewriteRule ^([^.]+)$ $1.html [QSA]

  # Redirect all non-static requests to cluster
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
  RewriteRule ^/(.*)$ balancer://myapp_cluster%{REQUEST_URI} [P,QSA,L]


    # Deflate
  #AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css
  #BrowserMatch ^Mozilla/4 gzip-only-text/html
  #BrowserMatch ^Mozilla/4\.0[678] no-gzip
  #BrowserMatch \\bMSIE !no-gzip !gzip-only-text/html

</VirtualHost>
4

2 に答える 2

1

OK、これが答えの一部です。このパートでは、.css および .js ファイルを扱います。どうやらそれは末尾のスラッシュに関連しているようです...いくつかのスラッシュを削除し、他のスラッシュを追加する必要がありました...

削除:

  DocumentRoot c:/www/app/public

  <Directory c:/www/app/public >

追加した:

  ProxyPass / balancer://myapp_cluster/
  ProxyPassReverse / balancer://myapp_cluster/

これで、.css ファイルと .js ファイルを正常に取得できます...

ただし、Apacheが正しいヘッダーを送信しないという問題がまだあります。私が返しているHTMLのすぐ内側には、これがあります:

しかし、まだ text/plain (httpd.conf で設定されている DefaultType) を返しています。

誰かアイデアがあれば教えてください!!!!!

ありがとう

于 2010-08-14T13:54:18.480 に答える
0

RoR には Linux ホストを強くお勧めします。Unicorn と Passenger は、mongrel クラスターよりもはるかに優れたツールです。それについての github ブログ投稿を参照してください。

于 2010-08-14T14:14:54.460 に答える