Tagged Questions

Webrick is a zero configuration http server stack chiefly used as the web server for the ruby-on-rails framework development and test environments.

learn more… | top users | synonyms

30
votes
13answers
23k views

Library not loaded: libmysqlclient.16.dylib error when trying to run 'rails server' on OS X 10.6 with mysql2 gem

I've been struggling with this for some time. I've installed Rails 3, gem, mysql on my Snow Leopard machine. All was going well until I created my first project and tried to run rails server Upon ...
16
votes
7answers
3k views

Webrick Very Slow When Accessing Applications From Remote Desktop

I have a rails application that I'm running on my server. When I go to a remote desktop and attempt to load the application, the server takes a good 3-4 minutes to respond with a simple html page. ...
13
votes
4answers
2k views

OmniAuth Google OpenID WEBrick::HTTPStatus::RequestURITooLarge

I am using OmniAuth to allow users to log in with their Google OpenID accounts. When I try to log in in development mode with WEBrick, I get a WEBrick::HTTPStatus::RequestURITooLarge error. When I ...
9
votes
2answers
487 views

Is there a way to tell RubyMine to not use webrick?

When I start my app up in RubyMine I want to be able to use unicorn and my unicorn configs. Is there any way to tell it not to use webrick but use something else like unicorn or thin?
6
votes
2answers
1k views

How to enable SSL for a standalone Sinatra app?

I want to write a quick server app in Sinatra. It has to be self-contained (i.e. not use apache/nginx/passenger) but also has to support SSL. Is there an easy way to enable SSL support for Sinatra ...
5
votes
3answers
117 views

Working around the lack of context in Sinatra's route methods

I have been having an issue with missing instances and nilClass errors when calling my routes. After delving around within the source it seems like the generate_method call basically creates a new ...
5
votes
2answers
1k views

How to set access-control-allow-origin in webrick under rails?

I have written a small rails app to serve up content to another site via xmlhttprequests that will be operating from another domain (it will not be possible to get them running on the same server). I ...
4
votes
2answers
146 views

How can rails app accept non-alphanumeric character in url?

I am trying to construct search method by accepting some keywords as a GET request. For exmaple, 'articles/search/computer' will likely search for articles that have keyword computer. Now, if ...
4
votes
3answers
5k views

Why does Ruby on Rails use http://0.0.0.0:3000 instead of http://localhost:3000?

I am very new to Ruby on Rails so when I tried to follow the official "Getting Started" ruby on rails tutorial, I was a bit disappointed because it went wrong very quickly. Basically it said : ...
3
votes
3answers
454 views

How to set Thin as default in Rails 3

I've been starting Thin with thin -V start in development. However, I would like Thin to be the default instead of WEBrick and to be able to start it with rails s. Is there a way to set Thin as the ...
3
votes
1answer
157 views

Disabling echo from webrick

How can I disable messages from webrick echoed on to the terminal? For the INFO messages that appear at the beginning, I was able to disable it by setting the Logger parameter so as: s = ...
3
votes
1answer
60 views

Rails Webrick: Configure what directories are watched for changes

At the moment I'm having to restart the server if I change files in the lib/ and app/helpers/ directories. Is there a way to configure either Rails or Webrick such that it hotswaps the files in those ...
3
votes
3answers
1k views

Changing the base URL for Rails 3 development

I know I'm going to deploy to an environment with my application running with a base URL which looks like this: http://someserver/mydepartment/myapp My development environment is set up to use the ...
3
votes
1answer
1k views

How do you configure WEBrick to use SSL in Rails 3?

Prior to Rails 3, you could modify the script/server file to add in SSL parameters and tell the server command to use the HTTPS version of webrick, now that all of those scripts are gone, does anyone ...
3
votes
4answers
673 views

How to access html request parameters for a .rhtml page served by webrick?

I'm using webrick (the built-in ruby webserver) to serve .rhtml files (html with ruby code embedded --like jsp). It works fine, but I can't figure out how to access parameters (e.g. ...
3
votes
2answers
172 views

Rails' script/server for a PHP project

Is there a simple HTTP server that can be run in the current PHP project path, like Rails' script/server (webrick)?
3
votes
2answers
162 views

Is it correct that there are particular times when you may need to restart Webrick to see your changes?

I heard Kevin Skoglund (lynda.com) say that it is good practice to get in the habit of restarting Webrick frequently during development. Although generally you do not need to restart Webrick to see ...
2
votes
1answer
76 views

How do I configure WEBrick to use an intermediate certificate with HTTPS?

I am currently using the following options in my Rails app to enable HTTPS with WEBrick: { :Port => 3000, :environment => (ENV['RAILS_ENV'] || "development").dup, :daemonize => ...
2
votes
4answers
149 views

Is a new instance of sinatra started on every request?

When a new http request comes in, will a new instance of sinatra be started, e.g. has sinatra to be initialized, or is just the method of a previous instance (the corresponding get/post method/route) ...
2
votes
1answer
133 views

rails 3.1 + asset pipeline + webrick returning 406 for requests to /images/

i'm using the asset pipeline with rails 3.1 and less. i have my images stored in app/assets/images. in my .css.less file i have: background-image: url('image.gif'); when the stylesheet gets ...
2
votes
4answers
136 views

Mimic .htaccess or some other type of password protecting with webrick

I have a rails app that I enjoy developing on a sever much more than locally, slow computer, the problem is even though on the server the development environment is great I need a way to look at the ...
2
votes
3answers
563 views

Recommended development web server for Rails 3.1 and Ruby 1.9.2

I have been using Mongrel successfully with rails 2.* and 3.0* development, with ruby 1.8.7. I recently started working with Rails 3.1 and ruby 1.9.2. I got my test app running with WEBrick. I don't ...
2
votes
2answers
290 views

Can I get Rails debugging output in Pow similar to WEBrick?

When I use rails/server (WEBrick) I get constant debug info (queries, etc) from my rails app as console output. Is there a way to get this debug output with Pow? Thanks
2
votes
3answers
106 views

Problem with Rails, Webrick or PostgreSQL? Malformed HTML generated after DB query

I am running Rails 3 on Ubuntu with PostgreSQL 8.4 and WEBrick. It has been working fine, but when displaying a large table (hundreds of rows), something is going wrong. The browser shows that the ...
2
votes
1answer
230 views

How to enable output compression (gzip) on everything that goes out of my Ruby on rails on Mongrel/WEBrick Server?

I am not sure this is the right place to ask this question, as answer to this may be coding solution or a config solution :) any way, I am using ruby 1.8.7 and rails 2.3.11 running on the Mongrel ...
2
votes
1answer
631 views

How to use deactivate Webrick's SSL

HI all, Last week I tried to debug with SSL activated in webbrick, but I forget how to restroe the settings to default(without SSL). Every time I visit a controller, now it shows: SSL connection ...
2
votes
1answer
897 views

Start webrick in port 80 (mysql2 gem issue)

I am trying to get my webrick serve in port 80. I tried: rails server -p 80 but get a access denied. I later understood that using port 1-1024 needs a root permission, so I tried this instead sudo ...
2
votes
4answers
413 views

rails app fast on server, but slow when accessed from another machine

I have a Rails app hosted on a server machine (running Webrick). When I log onto this machine and access the app (via localhost:3000), the app runs smoothly. But when I try to access the app from ...
2
votes
3answers
441 views

Using WEBrick to serve PHP web applications

I am a PHP developer who has started learning Ruby on Rails. I love how easy it is to get up and running developing Rails applications. One of the things I love most is WEBrick. It makes it so you ...
2
votes
1answer
561 views

Making Mongrel/WEBRick serve static assets with future expires header

I'm creating a Rails application which will be deployed to desktop machines, running both the webserver and the browser (it's a test-taking application which needs to be able to run without an ...
2
votes
2answers
633 views

Redmine: want to run webrick service as background process

i am completely done with my redmine installation in ubuntu server. i am testing the server using the following command: ruby script/server webrick -e production but when i press ctrl+z it stops. So ...
2
votes
1answer
324 views

Server won't start on using authlogic-oauth2

I have included oauth2 and authlogic-oauth2 in the gemfile as I want to use them and am trying to start the server. It doesn't start and gives me the error: ...
2
votes
1answer
176 views

Running staticmatic preview command results in webrick error

I get the following error with the following staticmatic preview command staticmatic preview my-app Site root is: my-app StaticMatic Preview Server Ctrl+C to exit [2010-12-16 11:42:24] INFO WEBrick ...
2
votes
2answers
3k views

Starting a rails server in Rails 3

I have created a new rails project with the command: rails project_name but now in that project if I run: rails server I just creates a new project call server, it doesn't start webrick. How do ...
2
votes
1answer
597 views

Is the ruby on rails webrick server ever used in production?

In a situation where the main server (apache) is offline, is it ever acceptable to run the ruby on rails application on the built in webrick server? Or should I have a local apache running. I have ...
2
votes
3answers
2k views

Running Webrick server in background?

MBPro:shovell myname$ ruby script/server => Booting WEBrick => Rails 2.3.8 application starting on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown server [2010-08-01 ...
1
vote
0answers
35 views

delayed_job 3.0.0 works in console but not WEBrick

Environment: Rails => 3.1.0 delayed_job => 3.0.1 delayed_job_active_record => 0.3.1 WEBrick => 1.3.1 ruby => 1.9.2 Code: class Comment < ActiveRecord::Base def ...
1
vote
1answer
15 views

Rails only responds when accessed from local machine

I'm running a Rails application on a Mac Mini server machine (with Webrick, running ruby 1.9.2 using rvm). It works fine when I run it locally on my MacBook, and it was working before I reinstalled ...
1
vote
2answers
108 views

Proxy for ajax calls using rake-pipeline-web-filters

I'm setting up my devel environment for an Ember.js app using rake-pipeline as described here. During development, my html and javascript are served by webrick (rake-filter magic that I don't quite ...
1
vote
0answers
81 views

Opening a new page: New window vs. New tab

I have my web browser (Firefox 10 and Chrome 16) set so that when a new page opens, it is opened within the same window in a new tab. When I write a local file like this: ...
1
vote
2answers
47 views

Somehow WEBrick is taking over my Sinatra app launch, how to turn it off?

A while ago, I was fooling around with Node.js (I don't really remember what I did). Now, whenever I launch Sinatra apps, I get this: mba:sinatra chromium$ ruby basics.rb [2011-12-16 18:38:23] INFO ...
1
vote
3answers
62 views

When should I restart webrick and when should I not?

I'm currently learning developing ruby on rails applications. If i make changes in the views should i need to restart webrick ? What about controllers, models ? When exactly should i restart webrick ...
1
vote
1answer
78 views

how to disable WEBrick Server header

I've developed a web application in Ruby (using Sinatra framework if that matters). It adds a Server header to every HTTP response: Server: WEBrick/1.3.1 (Ruby/1.9.3/2011-09-23) How do I disable ...
1
vote
1answer
17 views

How to get Processing Type from Controller (Rails)

When an HTTP request comes into the server (in this case I'm running rails s which defaults to webrick) the message looks something like: Started POST "/cards" for 127.0.0.1 at 2011-11-05 15:04:29 ...
1
vote
2answers
58 views

How do I attach back to the WEBrick server

I started the server in detached mode (-d), how do I attach back to it so that I can kill the server).
1
vote
3answers
169 views

How to start WEBrick in a different port than 3000

[2011-09-11 06:14:12] INFO WEBrick::HTTPServer#start: pid=32723 port=3000 How to start WEBrick in a different port than 3000, is there a way to specify this information in a config file instead of ...
1
vote
2answers
253 views

Access webrick/rails from another computer on local network

I have a rails application running on localhost:3000. I wish to access it from another computer on the same network. I feel like i've done this before with ease, but it's giving me some grief. I can ...
1
vote
0answers
59 views

Rails - How can I load a (valid) file from Webrick into a HTML5 video element?

This code, from a file on my desktop, does not work: <video src="http://0.0.0.0:3000/assets/attachable/108/original/501Spotlight_PSUB.mov" controls autobuffer="autobuffer" type="video/quicktime" ...
1
vote
1answer
370 views

change rails app from webrick to passenger

Need some help moving a rails app from webrick to passenger with apache. Im very new to all this and i cant get it running with passenger. I have tried a bunch of guides and I am not getting any ...
1
vote
1answer
134 views

Hiding all exception messages

I'm running Rails 3.0.8 with Webrick webserver started in production mode with such command RAILS_ENV=production rails server I have a following problem. I've read, that rails in production mode ...

1 2 3 4