How to secure an admin area for a public and private rails app - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:57:02Zhttp://stackoverflow.com/feeds/question/900763http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/900763/how-to-secure-an-admin-area-for-a-public-and-private-rails-app1How to secure an admin area for a public and private rails appAdmin2009-05-23T03:09:25Z2009-05-23T08:59:12Z
<p>How would you secure access to the admin area for a web app?</p>
<p>Our Rails CMS serves pages publicly. I would like to make the backend (/admin) inaccessible using either the webserver(apache) or firewall(netfilter).</p>
<p>Could this be done using an SSL certificate? I would like to limit access to the backend to only those whose have the "key", similar to SSH access to a server.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/900763/how-to-secure-an-admin-area-for-a-public-and-private-rails-app/900785#9007850Answer by SpliFF for How to secure an admin area for a public and private rails appSpliFF2009-05-23T03:29:26Z2009-05-23T03:34:33Z<p>DON'T use the firewall, you'll just complicate your implementation. The "correct" approach is to use .htaccess or set up authorisation in Apache Directory configuration.</p>
<p>It sounds like you want SSLRequire</p>
<pre><code>SSLVerifyClient none
<Directory /usr/local/apache/htdocs/secure/area>
SSLVerifyClient require
SSLVerifyDepth 5
SSLCACertificateFile conf/ssl.crt/ca.crt
SSLCACertificatePath conf/ssl.crt
SSLOptions +FakeBasicAuth
SSLRequireSSL
AuthName "Snake Oil Authentication"
AuthType Basic
AuthUserFile /usr/local/apache/conf/httpd.passwd
require valid-user
</Directory>
</code></pre>
<p>Howto: <a href="http://eregie.premier-ministre.gouv.fr/manual/mod/mod_ssl/ssl_howto.html" rel="nofollow">http://eregie.premier-ministre.gouv.fr/manual/mod/mod_ssl/ssl_howto.html</a></p>
http://stackoverflow.com/questions/900763/how-to-secure-an-admin-area-for-a-public-and-private-rails-app/901178#9011780Answer by Curt Sampson for How to secure an admin area for a public and private rails appCurt Sampson2009-05-23T08:59:12Z2009-05-23T08:59:12Z<p>You're absolutely right that an SSL cert is the way to go. And it's not really all that tricky to set up, though it's rarely done.</p>
<p>It's important to remember that this problem has two components. The first is, "how do I get the darn thing working at all," and, this being a security system, the second is, "how do I set it up so that I'm not likely to accidently do something that borks my security?"</p>
<p>The first thing I would suggest is to write a separate Rails application for the admin stuff, and run it with a different web server on a different port. (If you really want to avoid putting a port number in the URL for the admin site, use a proxy in front of both web servers that uses the <code>Host:</code> header to redirect requests to for <code>foo.com</code> to one server, and <code>admin.foo.com</code> to the other.) This separation will help ensure that you don't accidently give regular users access to admin functionality, and make the SSL setup easier.</p>
<p>For the admin server, set it up for SSL access only. Create a new signing cert, and allow only certificates signed by the signing cert to connect. (This is web-server dependent; if you really need details on how to do this, you probably want to post a new question giving the specifics of the server and configuration you're using.) You can set up a page (on the non-SSL site, or on a page accessable to non-authenticated users on the SSL site) that will have your admins' web browsers automatically generate and upload a certificate that you can sign which will give them access.</p>
<p>Keep copies of all the certs you sign so that when you need to revoke access, you can put that cert in the revocation list.</p>