não pode ver o wampserver usando o hostname

0

Eu instalei o WAMPserver 2.4 em um PC com Windows 7.1.

Eu cliquei no ícone WAMPserver na bandeja do sistema, selecione "colocar on-line".

Se eu carregar http://hostname/ (onde hostname é o nome do meu computador) no meu navegador, recebo o erro 403 Forbidden

O que eu preciso fazer para tornar meu WAMPserver público? (dentro da LAN e WAN)

Editar : Dentro do httpd.conf, há esta seção:

# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# 
ServerName localhost

Se eu mudei o host local para o meu nome de host, reiniciei o Apache, o mesmo erro permaneceu.

    
por Steve 21.01.2014 / 09:25

4 respostas

0

Como estou executando o WAMP 2.4.x, edito meu httpd.conf e descubro:

# onlineoffline tag - don't remove
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
  Allow from ::1
  Allow from localhost

e adicione:

 Allow from 10.6.0.138
 Allow from 10.2.26

Meu endereço IP é 10.6.0.138.

O endereço IP do meu colega é 10.2.26. *

    
por 21.02.2014 / 04:10
0

Eu acho que é só ouvir em 127.0.0.1:80.

Abra o apache-config (os nomes típicos são httpd.conf, apache.conf ...) e procure por uma linha:

Listen 127.0.0.1:80

edite essa linha para

Listen 80

ou

Listen your.dom.ain:80

Por favor, dê uma olhada na documentação do apache para mais informações. link

    
por 21.01.2014 / 09:44
0

permite que seu host do arquivo de configuração httpd do apache

default permite negar no arquivo httpd.conf

 Order Deny,Allow
     Deny from all
     Allow from 127.0.0.1
     Allow from ::1
     Allow from localhost
</Directory>

Adicione seu host na lista de permissões

Order Deny,Allow
     Deny from all
     Allow from 127.0.0.1
     Allow from ::1
     Allow from localhost
     Allow from yourhost
</Directory>
    
por 21.01.2014 / 10:19
0

Se a configuração do seu arquivo .conf não funcionar.

Você precisa editar seu arquivo host. Indo para: C: \ Windows \ System32 \ drivers \ etc. Pode "funcionar"

Descomente a linha 127.0.0.1 localhost e remova a linha abaixo dela.

Assim, seu arquivo host ficará assim

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
    127.0.0.1       localhost

exclua seu antigo ou coloque seu arquivo host antigo como ".OLD". ou você pode copiar e substituir. Espero que funcione para você. :))

    
por 21.01.2014 / 10:46

Tags