How to insert a reference to a user in my entry?
Loading web apge
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Зарегистрируйся!

QAIX > Apache HTTP Server > Loading web apge 21 August 2002 17:35:13

  Recent blog posts: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:

Loading web apge

Dan Stephens 21 August 2002 17:35:13
 When I go to my site with my browser I get the apache configuration page. This doesn't make sense to me since I have my page in /var/www/html which is defined in my httpd.conf file are DocumentRoot. I also have my indext.html in that same directory so that shold be the initial page to display. What should I change/move to make my page display and not the apache page?
Thank you for any help you can give me,
-Dan
Add comment
Milan Reznicek 21 August 2002 16:51:08 permanent link ]
 Check if you are editing the right httpd.conf.
----- Original Message -----
From: Dan Stephens
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 3:52 PM
Subject: Loading web apge


When I go to my site with my browser I get the apache configuration page. This doesn't make sense to me since I have my page in /var/www/html which is defined in my httpd.conf file are DocumentRoot. I also have my indext.html in that same directory so that shold be the initial page to display. What should I change/move to make my page display and not the apache page?
Thank you for any help you can give me,
-Dan
Add comment
Chris Taylor 21 August 2002 16:56:16 permanent link ]
 -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Did you restart Apache after changing the config file?

Also: check the <Directory> block a few lines below the DocumentRoot
directive, there should be one set to /usr/local/apache2/­htdocs (or
wherever it's installed), this should be changed to be the same as
your DocumentRoot.

You can restart Apache using "./apachectl restart" in Apache's bin
directory.

HTH

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
http://www.x-bb.org­/chris.asc

- ----- Original Message -----
From: Dan Stephens
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 2:52 PM
Subject: Loading web apge


When I go to my site with my browser I get the apache
configuration page. This doesn't make sense to me since I have my
page in /var/www/html which is defined in my httpd.conf file are
DocumentRoot. I also have my indext.html in that same directory so
that shold be the initial page to display. What should I change/move
to make my page display and not the apache page?
Thank you for any help you can give me,
-Dan

-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com­>

iQA/AwUBPWOb/Sqf8lm­E2RZkEQKd2gCg+oQMvp2­ts1CsQ/jcP4jkM0FCnVw­An2kq
IRQDf91bQ8JcJbMHU3S­IZaGY
=iPgc
-----END PGP SIGNATURE-----

Add comment
Deac Nkisetlein 21 August 2002 17:00:17 permanent link ]
 Do you start your apache with sslstart?

If so, did you change your DocumentRoot inside
ssl.conf too?

Regards!

--
GMX - Die Kommunikationsplatt­form im Internet.
http://www.gmx.net


-------------------­--------------------­--------------------­----------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.a­pache.org/userslist.­html> for more info.
To unsubscribe, e-mail: users-unsubscribe@h­ttpd.apache.org
" from the digest: users-digest-unsubs­cribe@httpd.apache.o­rg
For additional commands, e-mail: users-help@httpd.ap­ache.org


Add comment
Dan Stephens 21 August 2002 17:31:36 permanent link ]
 I do not have that <Directory> line in my httpd.conf file, what is the correct script that I will need to correctly set this feature?
-Dan
----- Original Message -----
From: Chris Taylor
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 9:56 AM
Subject: Re: Loading web apge


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Did you restart Apache after changing the config file?

Also: check the <Directory> block a few lines below the DocumentRoot
directive, there should be one set to /usr/local/apache2/­htdocs (or
wherever it's installed), this should be changed to be the same as
your DocumentRoot.

You can restart Apache using "./apachectl restart" in Apache's bin
directory.

HTH

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
http://www.x-bb.org­/chris.asc

- ----- Original Message -----
From: Dan Stephens
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 2:52 PM
Subject: Loading web apge


When I go to my site with my browser I get the apache
configuration page. This doesn't make sense to me since I have my
page in /var/www/html which is defined in my httpd.conf file are
DocumentRoot. I also have my indext.html in that same directory so
that shold be the initial page to display. What should I change/move
to make my page display and not the apache page?
Thank you for any help you can give me,
-Dan

-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com­>

iQA/AwUBPWOb/Sqf8lm­E2RZkEQKd2gCg+oQMvp2­ts1CsQ/jcP4jkM0FCnVw­An2kq
IRQDf91bQ8JcJbMHU3S­IZaGY
=iPgc
-----END PGP SIGNATURE-----

Add comment
Chris Taylor 21 August 2002 17:35:13 permanent link ]
 Example ripped from handy Windows box:


-------------------­--------------------­--------------------­--------------------­-

DocumentRoot "D:/Webroot"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "D:/Webroot">
...........

-------------------­--------------------­--------------------­--------------------­-


As you can see, my DocumentRoot and the second <Directory> block are set the same. If you don't even have that <Directory> block, you need to get a new default httpd.conf :)­

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer - http://www.x-bb.org­/chris.asc

----- Original Message -----
From: Dan Stephens
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 3:31 PM
Subject: Re: Loading web apge


I do not have that <Directory> line in my httpd.conf file, what is the correct script that I will need to correctly set this feature?
-Dan
----- Original Message -----
From: Chris Taylor
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 9:56 AM
Subject: Re: Loading web apge


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Did you restart Apache after changing the config file?

Also: check the <Directory> block a few lines below the DocumentRoot
directive, there should be one set to /usr/local/apache2/­htdocs (or
wherever it's installed), this should be changed to be the same as
your DocumentRoot.

You can restart Apache using "./apachectl restart" in Apache's bin
directory.

HTH

Chris Taylor - chris@x-bb.org - The guy with the PS2 WebServer -
http://www.x-bb.org­/chris.asc

- ----- Original Message -----
From: Dan Stephens
To: users@httpd.apache.­org
Sent: Wednesday, August 21, 2002 2:52 PM
Subject: Loading web apge


When I go to my site with my browser I get the apache
configuration page. This doesn't make sense to me since I have my
page in /var/www/html which is defined in my httpd.conf file are
DocumentRoot. I also have my indext.html in that same directory so
that shold be the initial page to display. What should I change/move
to make my page display and not the apache page?
Thank you for any help you can give me,
-Dan

-----BEGIN PGP SIGNATURE-----
Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com­>

iQA/AwUBPWOb/Sqf8lm­E2RZkEQKd2gCg+oQMvp2­ts1CsQ/jcP4jkM0FCnVw­An2kq
IRQDf91bQ8JcJbMHU3S­IZaGY
=iPgc
-----END PGP SIGNATURE-----

Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или УК РФ.


QAIX > Apache HTTP Server > Loading web apge 21 August 2002 17:35:13

see also:
[Messaging, JMS & JBossMQ] - Re…
[JBoss Portal] - Problems with building…
[Security & JAAS/JBoss] - Webapp…
пройди тесты:
see also:
Hh, it is fast in school. I do not ...
Hi! Why this site is so empty?:'(
Hi People!

  Copyright © 2001—2008 QAIX
Idea: Miсhael Monashev
Помощь и задать вопросы можно в сообществе support.qaix.com.
Сообщения об ошибках оставляем в сообществе bugs.qaix.com.
Предложения и комментарии пишем в сообществе suggest.qaix.com.
Информация для родителей.
Write us at:
If you would like to report an abuse of our service, such as a spam message, please .