Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: modules/discourse/files/discourse.fcgi

Issue 9377123: Set up proper FastCGI environment for Discourse and use nginx (Closed)
Patch Set: Installing gems per user again Created Feb. 16, 2013, 8:33 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | modules/discourse/files/init-discourse » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/discourse/files/discourse.fcgi
===================================================================
new file mode 100644
--- /dev/null
+++ b/modules/discourse/files/discourse.fcgi
@@ -0,0 +1,25 @@
+#!/usr/bin/ruby
+
+Dir.chdir(File.dirname(__FILE__))
+ENV['RAILS_ENV'] ||= 'production'
+ENV['GEM_HOME'] = File.expand_path('~discourse/.gems')
+ENV['GEM_PATH'] = File.expand_path('~discourse/.gems') + ':/var/lib/gems/1.9.1'
+
+require 'fcgi'
+require_relative 'config/environment'
+
+class Rack::PathInfoRewriter
+ def initialize(app)
+ @app = app
+ end
+
+ def call(env)
+ env.delete('SCRIPT_NAME')
+ parts = env['REQUEST_URI'].split('?')
+ env['PATH_INFO'] = parts[0]
+ env['QUERY_STRING'] = parts[1].to_s
+ @app.call(env)
+ end
+end
+
+Rack::Handler::FastCGI.run Rack::PathInfoRewriter.new(Discourse::Application)
« no previous file with comments | « no previous file | modules/discourse/files/init-discourse » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld