Erlang Mailing Lists

Author Message

<  Yaws mailing list  ~  Yaws behind Apache

dmitriid
Posted: Thu Mar 22, 2007 1:45 pm Reply with quote
User Joined: 17 Aug 2006 Posts: 213
I remeber seeing this somewhere on the list...

How would you put Yaws behind Apache? The thing is that I've recently
moved to a VDS Smile And I have three MediaWiki's running on the site (yup,
Apache + PHP). So if I want to experiment, say, with ErlyWeb, I will
need to put Yaws behind Apache...

How would you do that?

Thank you.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Erlyaws-list mailing list
Erlyaws-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/erlyaws-list
Post recived from mailinglist
View user's profile Send private message
filippo
Posted: Thu Mar 22, 2007 3:40 pm Reply with quote
User Joined: 22 Nov 2006 Posts: 19 Location: Siena
You can use a reverse proxy through apache mod_proxy.
http://httpd.apache.org/docs/2.2/mod/mod_proxy.html

E.g. with yaws listening on port 8000 you ca use something like this in
your apache conf.:

ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

ProxyPass /foo http://foo.example.com:8000/bar
ProxyPassReverse /foo http://foo.example.com:8000/bar

Cheers,
filippo

Dmitrii 'Mamut' Dimandt wrote:
> I remeber seeing this somewhere on the list...
>
> How would you put Yaws behind Apache? The thing is that I've recently
> moved to a VDS Smile And I have three MediaWiki's running on the site (yup,
> Apache + PHP). So if I want to experiment, say, with ErlyWeb, I will
> need to put Yaws behind Apache...
>
> How would you do that?
>
> Thank you.
>

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Erlyaws-list mailing list
Erlyaws-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/erlyaws-list
Post recived from mailinglist
View user's profile Send private message Visit poster's website Yahoo Messenger MSN Messenger
noss
Posted: Thu Mar 22, 2007 3:59 pm Reply with quote
User Joined: 09 Oct 2005 Posts: 290
Using a freestanding proxy such as
http://nginx.net/ was mentioned in a similar thread.
Gmail search to the rescue. Smile

I cant vouch for it, but reading the feature list makes me
want to run it on my virtual server.

On 3/22/07, Filippo Pacini <pacini@sgconsulting.it> wrote:
> You can use a reverse proxy through apache mod_proxy.
> http://httpd.apache.org/docs/2.2/mod/mod_proxy.html
>
> E.g. with yaws listening on port 8000 you ca use something like this in
> your apache conf.:
>
> ProxyRequests Off
>
> <Proxy *>
> Order deny,allow
> Allow from all
> </Proxy>
>
> ProxyPass /foo http://foo.example.com:8000/bar
> ProxyPassReverse /foo http://foo.example.com:8000/bar
>
> Cheers,
> filippo
>
> Dmitrii 'Mamut' Dimandt wrote:
> > I remeber seeing this somewhere on the list...
> >
> > How would you put Yaws behind Apache? The thing is that I've recently
> > moved to a VDS Smile And I have three MediaWiki's running on the site (yup,
> > Apache + PHP). So if I want to experiment, say, with ErlyWeb, I will
> > need to put Yaws behind Apache...
> >
> > How would you do that?
> >
> > Thank you.
> >
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Erlyaws-list mailing list
> Erlyaws-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/erlyaws-list
>

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Erlyaws-list mailing list
Erlyaws-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/erlyaws-list
Post recived from mailinglist
View user's profile Send private message
dmitriid
Posted: Fri Mar 23, 2007 8:15 am Reply with quote
User Joined: 17 Aug 2006 Posts: 213
Thank you! I now know what to look for!

Smile

Christian S wrote:
> Using a freestanding proxy such as
> http://nginx.net/ was mentioned in a similar thread.
> Gmail search to the rescue. Smile
>
> I cant vouch for it, but reading the feature list makes me
> want to run it on my virtual server.
>
> On 3/22/07, Filippo Pacini <pacini@sgconsulting.it> wrote:
>> You can use a reverse proxy through apache mod_proxy.
>> http://httpd.apache.org/docs/2.2/mod/mod_proxy.html
>>
>> E.g. with yaws listening on port 8000 you ca use something like this in
>> your apache conf.:
>>
>> ProxyRequests Off
>>
>> <Proxy *>
>> Order deny,allow
>> Allow from all
>> </Proxy>
>>
>> ProxyPass /foo http://foo.example.com:8000/bar
>> ProxyPassReverse /foo http://foo.example.com:8000/bar
>>
>> Cheers,
>> filippo
>>
>> Dmitrii 'Mamut' Dimandt wrote:
>> > I remeber seeing this somewhere on the list...
>> >
>> > How would you put Yaws behind Apache? The thing is that I've recently
>> > moved to a VDS Smile And I have three MediaWiki's running on the site
>> (yup,
>> > Apache + PHP). So if I want to experiment, say, with ErlyWeb, I will
>> > need to put Yaws behind Apache...
>> >
>> > How would you do that?
>> >
>> > Thank you.
>> >
>>
>> -------------------------------------------------------------------------
>>
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to
>> share your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>>
>> _______________________________________________
>> Erlyaws-list mailing list
>> Erlyaws-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/erlyaws-list
>>
>


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Erlyaws-list mailing list
Erlyaws-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/erlyaws-list
Post recived from mailinglist
View user's profile Send private message

Display posts from previous:  

All times are GMT
Page 1 of 1
This forum is locked: you cannot post, reply to, or edit topics.

Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum