Displaying 20 results from an estimated 500 matches similar to: "GzipFilter gemplugin now available"
2006 Dec 07
17
compress and max upload size?
I am using mongrel_cluster with mod_proxy_balancer and would like to
enable compression (assuming it improves throughtput) and limit file
size upload. I configured mod_deflate and LimitRequestSize in Apache,
but in my trials looks like the proxied calls bypass those directives
(the conf goes below).
Is there a way to get this?
-- fxn
# Adapt this .example locally, as usual.
#
# To be
2006 Nov 01
8
Nginx, Mongrel, Proxy and REMOTE_ADDR
I''m using a cluster of mongrels behind an apache 1.3 proxy pass. I''ve
been passing the request to pen, which in turn balances the cluster of
mongrels. Now, I''d like to be able to use a different server to send
the static files created by the rails application, so I tried to
replace pen with nginx. Everything seems to work fine except the
environment variable REMOTE_ADDR.
2006 Aug 25
2
really a GemPlugin/mongrel_cluster question
Hi folks,
I''d like to run the Mongrel prerelease (0.3.13.4 prerelease) and
mongrel_cluster 0.2.1 on my shared host (which doesn''t want to
install prerelease software for all to use). I can install the gems
in my own directory, and run mongrel 0.3.13.4 with --prefix just
fine. However, I think due to the GemPlugin structure, even my new
mongrel_rails loads up
2007 Mar 12
17
need help writing a plugin
Hi,
I''m halfway developing a tiny plugin that allows people to scrub flash
video files. I''ve got my plugin setup to monitor a directory /movies.
Whenever a .flv file is requested within that directory, some stuff
should happen, if not, the request should be processed as usual. I don''t
know how to do the latter..
require ''mongrel''
require
2006 Mar 06
5
Mongrel 0.3.9 -- GemPlugin Based
Hello everyone,
Mongrel now has plugins that are based entirely on RubyGems. This feature
was so slick that I decided to bust it out into a separate project called
GemPlugin (more on that later). What the new plugin system does is makes it
so that people can distribute Mongrel plugins as just plain gems, and
mongrel will load them on the fly if people install them. There''s no
2007 Jun 05
3
Mongrel/Apache mod_deflate question
Hi Folks,
We''re moving from a single lighttpd-hosted Rails box to a Apache/
mongrel cluster.
In lighttpd, mod_compress had a very nice feature:
if there''s a static file, it would compress it in a user-specified
compress folder. If the file hasn''t changed, it would just serve out
the compress file; if the file has changed, it would recompress it
and serve it out.
2006 Mar 06
0
Mongrel 0.3.9 -- GemPlugin Based
Hello everyone,
Mongrel now has plugins that are based entirely on RubyGems. This feature
was so slick that I decided to bust it out into a separate project called
GemPlugin (more on that later). What the new plugin system does is makes it
so that people can distribute Mongrel plugins as just plain gems, and
mongrel will load them on the fly if people install them. There''s no
2006 Nov 30
5
stability
Hi,
Are there any recommendations as to what is currently the most stable
setup is for mongrel & apache? I read somewhere (probably here) that you
should avoid using PStore for sessions. Are there any more of such
recommendations? Also, what is currently the safest version of mongrel
to use in production?
Jeroen
2006 Mar 29
0
mongrel gemplugin name error
Hi,
Deploying in production on a server (debian sarge + ruby1.8.4)
I got some problems:
> mongrel_rails start -q
/usr/lib/ruby/gems/1.8/gems/mongrel-0.3.11/bin/mongrel_rails:6:
uninitialized constant GemPlugin (NameError)
from /usr/bin/mongrel_rails:18
gem_plugin is installed though. Mongrel 0.3.11. Rails 1.1.
Any idea?
--
Jean-Christophe Michel
2006 Oct 25
3
rails app breaks after pg restart
Hi,
Disclaimer: I''m pretty sure this isn''t a mongrel issue, as I''m pretty
sure I had the same problem back in the lighty-fastcgi days..
After a postgres restart, my rails apps crash with this error:
ActiveRecord::StatementInvalid (PGError: FATAL: terminating connection
due to a
dministrator command
server closed the connection unexpectedly
This probably
2006 May 10
2
Output Compression in Mongrel?
I''d like to implement output compression in Mongrel (ala Apache''s
mod_deflate). I have found a Rails plugin that, with minor modification,
works.
Is there even an advantage to moving the output compression from the Rails
app to a Mongrel handler?
Unless, of course, someone knows how to configure mod_proxy_balancer with
mod_deflate...
==
Will Green
Web Developer & IT
2007 Jul 24
4
GemPlugin or Mongrel::HttpHandler subclass
Hey all
I am working with a technology standard (specific to the commercial
print industry) by which each element within the workflow has bi-
directional HTTP messaging. As each side needs a http server, I
thought I could either:
a) use a gem plugin to modify the behavior of mongrel
b) subclass Mongrel::HttpHandler
In short, its xml messaging between two points; each with a HTTP
client
2008 Jan 23
14
Again: Workaround found for request queuing vs. num_processors, accept/close
Hello all.
I too found out that I sometimes have some action that can take up to 10
seconds in my rails application. I''ve read all arguments Zed made about
polling/and inbox strategies, and I think I just can''t work around my feeling
that a "wrong" request that takes up too much time should be able to lock
subsequent requests in mongrels queue. That''s what
2008 Jul 16
2
anyone know anything about using mod_deflate gzipping with Rails?
Anyone know anything about using mod_deflate gzipping with Rails? I''ve
got it enabled in our .htaccess but it doesn''t seem to handle gzip
anything going through Rails. Any ideas?
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send
2008 Mar 29
3
Generating maps in R
Greetings!
I am trying plot some data on a map in R. Here's the scenario.
I have a variable called probworkinghealthy which contains a predicted
probability of employment for every individual in my sample (about
100,000 observations).
I have another variable, called a001ter, which contains the subject of
residency in the Russian Federation (akin to a US state) for every
individual in the
2009 Feb 05
3
maptools: Test if point is in polygon
In R's maptools package, is there a built-in function to test if a
given point is "inside" a given polygon on the map? The map was
loaded from an ESRI Shapefile. The point's latitude and longitude are
known.
Thank you!
Aleks
--
------------------------
Aleksandr Andreev
Fulbright Fellow
Graduate School of Management
St Petersburg State University
2015 Dec 04
2
Content-Enconding
Hi,
With Apache one may use "mod_deflate" in order to reduce bandwidth by
using e.g. gzip to compress the http traffic. I would like to use
something similar for email traffic between mail clients to dovecote and
postfix. My questions are:
a) Is this established well enough in most mail clients?
b) Can you recomment a good tutorial for this?
Thank you very much
2006 Aug 26
5
LiteSpeed Web Server 2.2 with Ruby Rails integration....
Fellow Rail users and developers,
Right now the easiest way to run Rails is in combination with Mongrel.
However, it may not be a good idea to expose Mongrel directly to the
outside world in a high-load production environment. In-addition,
Mongrel_cluster + proxy + load balancer have to be used even for a
single server deployment making the unified setup more complicated than
needs be.
2018 Apr 25
2
Icecast + Google Analytics
Good afternoon! Can you please tell me how to connect the Icecast server to the Google Analytics system to see the statistics of the connections to the icecast server.
In advance thanks for the answer. Very much I wait. Regards, Aleks
-- реклама -----------------------------------------------------------
Милі квартири чекають на милих господарів!
Чекають саме Вас! https://goo.gl/iptNm5
2006 May 19
12
Mongrel/Apache and static content
I''m looking for an easy way to have mongrel only serve dynamic railscontent, while letting Apache serve non-Rails content. Unfortunately,it seems that you have to segregate the static content in its ownfolder. That was also the case with the SCGI runner. I used thetrick outlined athttp://comments.gmane.org/gmane.comp.lang.ruby.rails/23347 to managethis. I was curious if a similar