Rails, Apache, Thin sur Windows. Meilleure configuration pour httpd.conf

J’utilise cette configuration avec les lignes dans cette bonne réponse ( environnement de déploiement Rails sous Windows ):

 # Your server's web or IP address goes here. # You can leave at localhost if deploying to # company intranet or some such thing. ServerName localhost # Customize the next two lines with your app's public directory DocumentRoot "C:/RubyStack-3.2.5-0/projects/app_name/public"  Allow from all Options -MultiViews  RewriteEngine On # Redirect all non-static requests to Rails server, # but serve static assets via Apache RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f RewriteRule ^/(.*)$ balancer://app_balancers%{REQUEST_URI} [P,QSA,L] # Serves dynamic rails assets from multiple servers # to improve performance. A Rails server such as # thin or WEBrick must be running on at least one of # these ports in order for Apache to serve your site  BalancerMember http://localhost:3001/ BalancerMember http://localhost:3002/  # Support for far-futures expires header  Header unset ETag FileETag None # RFC says only cache for 1 year ExpiresActive On ExpiresDefault "access plus 1 year"   

Mais la navigation, j’ai trouvé d’autres articles et d’autres questions de personnes qui ont configuré Apache httpd d’une manière différente, en ajoutant ou en soustrayant des lignes de configuration.

Comme ici: http://www.varyonic.com/2011/06/using-apache-with-mongrel-or-thin-and-rails-3/#.VK5OhyuG9G6

Qu’Est-ce que c’est?:

 ProxyPreserveHost On ProxyPass /images ! ProxyPass /stylesheets ! ProxyPass /javascripts ! ProxyPass / balancer://thinservers/ ProxyPassReverse / balancer://thinservers/ 

Maintenant, bien sûr, je suis ici pour vous demander: quel est le meilleur pour Rails 4 sur Windows 8.1 / Windows 10?

Le serveur Thin est-il le meilleur pour Windows 8.1 / 10? Bâtard? Autre?

Des alternatives à Apache pour la stabilité et la vitesse?

Le système d’exploitation est Windows et je ne peux pas le changer.