Displaying 20 results from an estimated 10000 matches similar to: "Http and SSL within the same app?"
2006 Aug 16
18
mongrel lighttpd and ssl
I am wanting to one run instance of lighttpd, many many instances of
mongrel. I also need ssl but only for one of my sites. I understand that
Mongrel does not play with SSL so I am forced to use Lighttpd. I think that
lighttpd only handles ssl or non-ssl on any given instance. Is there a way
for me to accomplish my goal of one lighttpd with multiple mongrels and the
occasional ssl connection?
--
2007 May 31
4
Sample Merb App
I put together a sample app to help people learn Merb:
http://svn.depixelate.com/applications/invoice_tracker/
I also blogged about it here:
http://depixelate.com/2007/5/31/taking-merb-for-a-spin
--
Zack Chandler
http://depixelate.com
2006 Jul 25
1
rails compatible http servers that support ssl client auth
So far, apache is the only server I have found that supports ssl
client authentication. Pound can forward the client certificate so I
could verify it myself. I couldn''t find any information on client
auth with lighttpd. Litespeed evidently doesnt'' support it. I''ve
been trying to use apache for the ssl connection and then pass the ssl
env back to mongrel or lighttpd,
2017 Aug 28
0
regex - optional part isn't considered in replacement with gsub
"Please, consider that some SKUs have "-"
in the middle, for example: "PG-9021".
Then you need to include these in the list of patterns you gave. Try it
again -- this time with a **complete** list.
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his
2017 Aug 27
6
regex - optional part isn't considered in replacement with gsub
Hello, I need some help with regex.
I have this to sentences. I need to extract both "49MU6300" and "LE32S5970"
and put them in a new colum "SKU".
A) SMART TV UHD 49'' CURVO 49MU6300
B) SMART TV HD 32'' LE32S5970
DataFrame for testing:
ecommerce <- data.frame(a = c(1,2), producto = c("SMART TV UHD 49'' CURVO
49MU6300",
2006 Oct 11
7
Mongrel HTTP Header Problem
Hi,
I''ve recently been trying to setup Mongrel behind Pound so that I can
do mutual SSL authentication. I''ve had a few problems with Pound
(documented at [1]), but now have it working correctly.
However, I think there is a problem with Mongrel and how it deals with
the headers Pound adds to the HTTP header block. One of the extra
headers Pound adds is
2007 Mar 24
4
image file URL generated by image_tag include some parameter
I''m using image_tag to generate img tag.
URL of image file generated by image_tag include a parameter like following.
"http:// ..... /images/filename.gif?123123123"
What''s this number parameter for? How can I remove it? I''m using rails
with built-in WEBrick server in test mode.
--~--~---------~--~----~------------~-------~--~----~
You received this message
2018 Sep 26
1
Which is the best open source ecommerce platform?
Good afternoon from Singapore,
There are far too many choices when it comes to open source ecommerce solutions.
Are there any credible rankings of open source ecommerce platforms?
Which open source ecommerce solution do you think is the best and tell me why.
Thank you.
===BEGIN SIGNATURE===
Turritopsis Dohrnii Teo En Ming's Academic Qualifications as at 30 Oct 2017
[1]
2005 Jan 17
1
here's my IAX callthrough app and some questions about problems I have.
Hello all,
What my app does is accepts a call in on a Dial-In Number (DID) via
IAX, and then prompts the caller for the top secret password (123) and
then authenticates the user and prompts them to dial in the number
they'd like to call. Once they press pound after dialing in the number
it will read it back to them, if they press pound it will attempt to
connect via the second IAX provider,
2007 Jan 26
7
How to protect attributes from being updated?
Hi!
I''m new to Rails!
Rails rox!
1 quesion so far:
I have :email attribute in User model.
I dont'' want :email to allow to be updated.
How do i do this with Rails?
Do I have to implement required validation manually?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2005 Jul 05
2
root@localhost email problem
I have another problem with the email root at localhost not working now on
centos 3.5 with plesk.
This has always worked in the past. Anytime I test my ecommerce store the
default email address has been root at localhost and has sent an email to my
domain email address when testing. Just recently this has stopped working.
The ecommerce store is php. I contacted the ecommerce store developer
2006 Jan 23
1
ssl_requirement plugin: how do I override ssl_required?
The ssl_requirement plugin indicates that I can override the
ssl_required? method. I want to use this facility to ignore the ssl
requirement declarations when RAILS_ENV is anything other than
''production''.
My question is, where do I override this?
The relevant readme is:
http://dev.rubyonrails.org/browser/plugins/ssl_requirement/README
Also, does this plugin work with a
2006 Aug 10
7
Mongrel and SSL?
I have a small intranet app with only 20 or so users.
I''m currently using lighttpd w/ssl for production and mongrel for dev.
I don''t think Mongrel supports ssl, but what is the easiest front-end
to put in front of it? Pound?
Thanks
Greg
--
Greg Freemyer
The Norcross Group
Forensics for the 21st Century
2006 Nov 20
4
ssl_requirement not working
Forgive me if this isn''t 100% rails, but I''m trying to get
ssl_requirement to work and it sends my app into an infinite loop
because @request.ssl? is always returning false, even if I''m using
https://
For some reason, my @request isn''t getting any SSL info: neither
@request.ssl? nor @request.env["HTTPS"] return true.
I''m using pound/mongrel
2007 Feb 01
6
Using a nonstandard foreign key
Hopefully this is an interesting question.
I have a "user" table with a field "email_address". I would like the
part of "email_address" after the ''@'' to be a foreign key to a
"companies" table populated by a companies that are clients.
Any pointers on how to do this in rails?
--~--~---------~--~----~------------~-------~--~----~
You
2006 Nov 17
4
set empty values as null in the database
Le''s say that I have a table called people and the column middle_name is
nullable. If the user enters say blank or empty space then in the database
it is recorded as empty space. I would like in all my models all empty
spaces to be recorded as null.
I guess I can write a plugin which will do so for all the models but I''m
sure something like that should already be existing.I
2006 Aug 10
6
Login Restfully
In DHH''s keynote, he alluded to doing logins with REST. Has anyone
implemented this, and if so, would you mind elaborating on how you did
it please?
Thanks in advance.
--
Posted via http://www.ruby-forum.com/.
2006 Aug 17
8
instance variables in templates
Hey all,
Well... hmm... feeling pretty stupid here...
For some reason my controller instance variables are not displaying
in my templates. I''ve boiled it down to this test case.
class Rss::FilmController < ApplicationController
def display
@time = Time.now
end
end
and the template:
<html>
<head>
<title>Is This Ever Going To Work</title>
2007 Mar 28
1
Unsetting Global Vars
How do I clear a global variable for good? I have a situation of
needing to use global variables to aide in channel communication, but
will be changing the name within a defined scope.
Additional Background...
I want to get a variable from a channel (child) that is created by
another channel (parent), however the execution of the parent channel
does not continue until the child channel is gone.
2006 Aug 15
7
mongrel_cluster not starting on reboot
Hi,
I''m in the process of moving my blog over from lighttpd -> apache 2.2
+ mongrel. Everything works fine as long as I don''t reboot :)
On reboot apache comes up but mongrel_cluster doesn''t start up the pooches...
I have added the mongrel_cluster call to my startup scripts like so:
www:/etc/init.d# update-rc.d mongrel_cluster defaults
Adding system startup for