From: "cypherstrong" <cypherstrong@gmail.com>
To: <gentoo-user@lists.gentoo.org>
Subject: RE: [gentoo-user] Fwd: apache vhost issue...
Date: Sun, 9 Mar 2008 19:48:00 +0100 [thread overview]
Message-ID: <002a01c88216$1a4e7560$4eeb6020$@com> (raw)
In-Reply-To: <c74ac3520803091047g51e52d70rb818ab2de5ca5a05@mail.gmail.com>
Um ...
I see this :
<VirtualHost *:80>
ServerName www.helpermaster.fr
Include /etc/apache2/vhosts.d/default_vhost.include
ErrorLog /var/www/localhost/log/error.log CustomLog
/var/www/localhost/log/access.log combined
<IfModule mpm_peruser_module>
ServerEnvironment apache apache
</IfModule>
</VirtualHost>
ServerName = www.helpermaster.fr !!!
For the default ???
No !
change to localhost
for your helpermaster.fr file, don't forget the documentroot directive
-----Message d'origine-----
De : Elyahou ITTAH [mailto:ittah.elyahou@gmail.com]
Envoyé : dimanche 9 mars 2008 18:47
À : gentoo-user@lists.gentoo.org
Objet : Re: [gentoo-user] Fwd: apache vhost issue...
2008/3/9, cypherstrong <cypherstrong@gmail.com>:
> Could you post default vhost configuration ?
>
>in your host file.
>You just need this host have the ip address you contact in host file
# cat /etc/hosts
127.0.0.1 localhost
91.121.117.202 ns201241.ovh.net
# IPV6 versions of localhost and co
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
127.0.0.1 localhost
# cat /etc/apache2/vhosts.d/00_default_vhost.conf
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry
about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
<IfDefine DEFAULT_VHOST>
# see bug #178966 why this is in here
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80
# Use name-based virtual hosting.
NameVirtualHost *:80
# When virtual hosts are enabled, the main host defined in the default
# httpd.conf configuration will go away. We redefine it here so that it is
# still available.
#
# If you disable this vhost by removing -D DEFAULT_VHOST from
# /etc/conf.d/apache2, the first defined virtual host elsewhere will be
# the default.
<VirtualHost *:80>
ServerName www.helpermaster.fr
Include /etc/apache2/vhosts.d/default_vhost.include
ErrorLog /var/www/localhost/log/error.log
CustomLog /var/www/localhost/log/access.log combined
<IfModule mpm_peruser_module>
ServerEnvironment apache apache
</IfModule>
</VirtualHost>
</IfDefine>
# vim: ts=4 filetype=apache
# cat /etc/apache2/vhosts.d/default_vhost.include
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
ServerAdmin admins.services@gmail.com
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
# If you change this to something that isn't under /var/www then suexec
# will no longer work.
DocumentRoot "/var/www/localhost/htdocs"
# This should be changed to whatever you set DocumentRoot to.
<Directory "/var/www/localhost/htdocs">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch
ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options
All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please
see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
Options Indexes FollowSymLinks
# AllowOverride controls what directives may be placed in
.htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride All
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
<IfModule alias_module>
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
# ScriptAlias: This controls which directories contain server
scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to
the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
ScriptAlias /cgi-bin/ "/var/www/localhost/cgi-bin/"
</IfModule>
# "/var/www/localhost/cgi-bin" should be changed to whatever your
ScriptAliased
# CGI directory exists, if you have that configured.
<Directory "/var/www/localhost/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
# vim: ts=4 filetype=apache
--
gentoo-user@lists.gentoo.org mailing list
--
gentoo-user@lists.gentoo.org mailing list
next prev parent reply other threads:[~2008-03-09 18:48 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <c74ac3520803090439q268b047q15e410711fc31f4f@mail.gmail.com>
2008-03-09 11:52 ` [gentoo-user] Fwd: apache vhost issue Elyahou ITTAH
2008-03-09 12:49 ` Juul
2008-03-09 13:28 ` Elyahou ITTAH
2008-03-09 14:35 ` Strong Cypher
2008-03-09 14:38 ` Elyahou ITTAH
2008-03-09 14:45 ` Strong Cypher
2008-03-09 14:50 ` Elyahou ITTAH
2008-03-09 15:00 ` Norberto Bensa
2008-03-09 15:09 ` Elyahou ITTAH
2008-03-09 15:01 ` cypherstrong
2008-03-09 15:16 ` Elyahou ITTAH
2008-03-09 15:40 ` cypherstrong
2008-03-09 15:47 ` Elyahou ITTAH
2008-03-09 15:51 ` cypherstrong
2008-03-09 17:47 ` Elyahou ITTAH
2008-03-09 18:37 ` Elyahou ITTAH
2008-03-09 18:48 ` cypherstrong [this message]
2008-03-09 15:59 ` cypherstrong
2008-03-09 15:04 ` Collin Starkweather
2008-03-09 15:19 ` Collin Starkweather
2008-03-09 18:59 ` Mike Williams
2008-03-09 19:15 ` Elyahou ITTAH
2008-03-09 19:23 ` cypherstrong
2008-03-09 19:37 ` Elyahou ITTAH
2008-03-09 19:48 ` cypherstrong
2008-03-09 20:06 ` Elyahou ITTAH
2008-03-09 20:14 ` cypherstrong
2008-03-10 17:52 ` Mick
2008-03-10 22:19 ` Elyahou ITTAH
2008-03-09 20:58 ` Mike Williams
2008-03-09 21:53 ` cypherstrong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='002a01c88216$1a4e7560$4eeb6020$@com' \
--to=cypherstrong@gmail.com \
--cc=gentoo-user@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox