This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Troubleshooting
This is a collection of common things-to-remember when setting up a spree-backed project.
Configuring Nginx to use SSL
Nginx is one option for the front-end of a rails deployment. It’s been tested successfully with spree applications.
If you need SSL, note the config advice at http://norbauer.com/notebooks/code/notes/nginx-ssl-rails: the page also points to a sample config file at http://brainspl.at/nginx.conf.txt (some of which is explained on http://brainspl.at/articles/2006/08/23/nginx-my-new-favorite-front-end-for-mongrel-cluster)
Creating Custom (Additional) Back-End Controllers
Related to:
undefined method `tab' for #<ActionView::Base>
Don’t forget that all backend Controllers must inherit from the Admin::BaseController.
The very first line of your (new) custom controller must look like this:
class Admin::ThingsController < Admin::BaseController Hope this helps!






