Skip to content

Instantly share code, notes, and snippets.

@jcypret
Created July 10, 2014 02:58
Show Gist options
  • Save jcypret/94d94e71ac2d724bdcc7 to your computer and use it in GitHub Desktop.
Save jcypret/94d94e71ac2d724bdcc7 to your computer and use it in GitHub Desktop.
WordPress Rack Config
require 'rubygems'
require 'bundler'
Bundler.require
use Rack::ShowExceptions
use Rack::Legacy::Index
use Rack::Legacy::Php
run Rack::File.new Dir.getwd
class Rack::Legacy::Php
def valid? path
return true
end
end
source 'https://rubygems.org'
gem 'rack'
gem 'rack-legacy'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment