[Rails] Re: Apche + SSL Configuration Issue

2008-11-25 Thread Hassan Schroeder

On Tue, Nov 25, 2008 at 6:08 AM, Piyush with Rails
<[EMAIL PROTECTED]> wrote:

> Can anyone tell me how to find out the ssl is installed here?

Your apache's bin directory includes `apachectl` -- run it without any
args to get a list of args; you'll probably be interested in trying several
of them ( -l, -t for instance).

HTH,
-- 
Hassan Schroeder  [EMAIL PROTECTED]

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-25 Thread Piyush with Rails


Hey, i tried with various ways doing apache configuration for ssl and
still same issue persist. i feel that i do not have mod_ssl installed
or its not matching with my apache version. i am not sure about i have
installed mod_ssl or not and not able to find it out also.

some of the thins i got related with mod_ssl in my system is given
below.

I have /usr/lib/apache2/modules/mod_ssl.so file here. i have mod_ssl
module enabled in apache.

I have ubuntu flavour of linux and my apache version is 2.2.8.

Right now my site is up without ssl and configuring apache with ssl
giving me this error:

"caught SIGWINCH, shutting down gracefully
Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.1 with Suhosin-Patch mod_ssl/
2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations"


Can anyone tell me how to find out the ssl is installed here?

What is going wrong here and need to be done to get ssl work?

Thanks,
Piyush.








On Nov 21, 2:00 pm, Piyush with Rails <[EMAIL PROTECTED]> wrote:
> i have installed ssl_requirement plugin in my application. i have
> mongrel cluster and apache configuration installed.
>
> On Nov 21, 3:29 am, Freddy Andersen <[EMAIL PROTECTED]> wrote:
>
> > James is on to something but you could also remove mongrel from the
> > mix and just test a plain html or gif. How do you have it configured
> > between apache and mongrel? ProxyPass ? Do you have thesslplugin
> > installed?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-21 Thread Piyush with Rails

i have installed ssl_requirement plugin in my application. i have
mongrel cluster and apache configuration installed.

On Nov 21, 3:29 am, Freddy Andersen <[EMAIL PROTECTED]> wrote:
> James is on to something but you could also remove mongrel from the
> mix and just test a plain html or gif. How do you have it configured
> between apache and mongrel? ProxyPass ? Do you have the ssl plugin
> installed?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-21 Thread Piyush with Rails

Yes James i already added this line RequestHeader set
X_ORIGINAL_PROTOCOL 'https'. but getting same issue...

On Nov 21, 1:57 am, James Byrne <[EMAIL PROTECTED]>
wrote:
> James Byrne wrote:
> > Do you have this in your Apache server virtual host file?
>
> > RequestHeader set X_ORIGINAL_PROTOCOL 'https'
>
>  Opps. I forgot to add this:
>
> http://blog.innerewut.de/2006/6/21/mongrel-and-rails-behind-apache-2-...
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-20 Thread Freddy Andersen

James is on to something but you could also remove mongrel from the
mix and just test a plain html or gif. How do you have it configured
between apache and mongrel? ProxyPass ? Do you have the ssl plugin
installed?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-20 Thread James Byrne

James Byrne wrote:
> Do you have this in your Apache server virtual host file?
> 
> RequestHeader set X_ORIGINAL_PROTOCOL 'https'
> 
 Opps. I forgot to add this:

http://blog.innerewut.de/2006/6/21/mongrel-and-rails-behind-apache-2-2-and-ssl
-- 
Posted via http://www.ruby-forum.com/.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---



[Rails] Re: Apche + SSL Configuration Issue

2008-11-20 Thread James Byrne

Do you have this in your Apache server virtual host file?

RequestHeader set X_ORIGINAL_PROTOCOL 'https'

Mongrel, by design, does not do SSL.  Redirects from inside the cluster 
will perforce become http. I do not know if this is your issue or not 
but it might be a place to start.

Good luck and please report back how you solve it.
-- 
Posted via http://www.ruby-forum.com/.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~--~~~~--~~--~--~---