Displaying 7 results from an estimated 7 matches for "proxy_http".
2005 Feb 14
1
upgradation to centos 3.4
...to access the internet. so i thought it isn't
able to access the proxy. after some searching on the
net i could set the http proxy in the /etc/profile
file. i used the following lines in the file(with the
actual ip address and port ofcourse).
set "http://my.domain.name:port/"
export proxy_http="http://my.domain.name:port/"
when i became the super user and tried the command
'yum install centos-yumcache', i got the messages
attached below.
[root at achala etc]# yum install centos-yumcache
Gathering header information file(s) from server(s)
Server: CentOS-3.3 - Addons
re...
2013 Jun 26
1
use of exec in puppet
Hi,
I''ve tried to to exec function in puppet for enabling module for apache.
Here is the code that I am using:
class apache::mod {
exec { "a2enmod" :
command => "a2enmod proxy_http",
path => "/usr/sbin/",
notify => Class["apache::service"],
require => Class["apache::install"],
}
}
But in agent I''m getting the following error,
notice: /Stage[main]/Sudo/Package[sudo]/ensure: created
err: /Stage[main]/Apache::Mod/Exec[a2enmo...
2007 Dec 07
1
Ruby on Rails applications with Mongrel cluster
Hello All
I am trying to install 5 mongrel servers against my app. i am using
Vista. I found this article on a website.. but am stuck on one point.
here are some notes from article:
Now enable the needed modules (url rewriting, proxy, proxy_balancer e
proxy_http) by editing the httpd.conf file (under c:
\Apache_Software_Foundation\Apache2.2\conf, if you installed Apache in
its standard path). You just need to uncomment the following lines
(remove the #):
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule proxy_module modules/mod_proxy.so
LoadModu...
2007 Jan 25
8
Mongrel with mephisto on a Virtual Private Server
Hello everyone,
I am trying to setup Mongrel to work with Apache on a VPS as part of a mephisto installation. Has anyone done this, and if so how did you edit your conf file to make it work?
I used the info found on the mongrel site at:
http://mongrel.rubyforge.org/docs/apache.html<http://mongrel.rubyforge.org/docs/apache.html>
and one time I did get a mephisto splash screen, but it was
2008 Dec 29
4
Using an Exec inside a define
...che2/mods-enabled/$name.load",
notify => Service["apache2"],
}
}
default: { alert("Invalid option for apache::module.") }
}
}
I call it like so:
apache::module { "proxy_http": ensure => enabled }
This seems to work just fine as long as I only call it once. If I
call it multiple times, each with a different module name, I get this
error:
err: Could not retrieve catalog: Puppet::Parser::AST::Resource failed
with error ArgumentError: Duplicate definition: Exec[...
2007 Jun 06
9
"not authorized" when testing mongrel support
Hi,
We''re trying to follow the instructions at
http://reductivelabs.com/trac/puppet/wiki/UsingMongrel
(Just using a single puppetmaster/mongrel instance and plain mod_proxy for now,
instead of balancer one)
We got past the "Server is not a class" error by modifying mongrel.rb
We also kind-of got past the:
/opt/bin/puppetmasterd:293: undefined method `daemonize'' for
2006 Dec 29
9
Error : No protocol handler was valid for the URL...
...:
[warn] proxy: No protocol handler was valid for the URL /. If you are using
a DSO version of mod_proxy, make sure the proxy submodules are included in
the configuration using LoadModule.
I googled this error and I found that I have to load 3 differents modules,
so I typed :
a2enmod proxy
a2enmod proxy_http
a2enmod proxy_balancer
each time I get this return : This module is already enabled!
So I have no idea to what can i do ...
This is my config :
-----------------------
cat /etc/apache2/mods-enabled/proxy.conf
<IfModule mod_proxy.c>
#turning ProxyRequests on and allowing proxying from...