Check alle échte Black Friday-deals Ook zo moe van nepaanbiedingen? Wij laten alleen échte deals zien

Apache virtual host krijg ik niet werkend

Pagina: 1
Acties:

  • pjotrbee
  • Registratie: Januari 2014
  • Laatst online: 30-03 16:36
Ik heb de volgende drie wijzigingen gemaakt:

(1) Toegevoegd in C:\Windows\System32\drivers\etc\hosts :
127.0.0.1 loc
127.0.0.1 symfony.loc


(2) In C:\xampp\apache\conf\httpd.conf :
Include conf/extra/httpd-vhosts.conf (Comment-teken verwijderd)

(3) In C:\xampp\apache\conf\extra\httpd-vhosts.conf :
NameVirtualHost *:80
<VirtualHost *:80>
ServerName localhost
DocumentRoot "c:/xampp/htdocs"
</VirtualHost>

<VirtualHost *:80>
ServerName symfony.loc
DocumentRoot "C:/xampp/htdocs/Symfony2Vendor"
</VirtualHost>


Daarna PC en dus ook Apache opnieuw gestart.
De URL http://localhost/Symfony2vendor/web/config.php geeft netjes het Symfony welkomscherm.
De URL symfony.loc/web/config.php wordt niet herkent !! Chrome maakt er een google-search opdracht van.
Ik ben hier al de hele dag mee bezig. Wat doe ik fout ? :'(

  • sam.vimes
  • Registratie: Januari 2007
  • Laatst online: 08-06 08:44
In je hosts-file mag elk ip-nummer (eerste kolom) maar een keer voorkomen.
Wijzig
code:
1
2
3
127.0.0.1 loc
127.0.0.1 symfony.loc
127.0.0.1 localhost

in
code:
1
127.0.0.1 localhost loc symfony.loc

  • Hero of Time
  • Registratie: Oktober 2004
  • Laatst online: 14:15

Hero of Time

Moderator LNX

There is only one Legend

Dat is niet wat sommige host-file based adblockers werken. Heb je een bron waarin staat dat het niet per regel mag?

Commandline FTW | Tweakt met mate


  • xares
  • Registratie: Januari 2007
  • Laatst online: 29-11 21:31
Wat zegt

cmd -> nslookup symfony.loc


?

[ Voor 14% gewijzigd door xares op 17-01-2014 14:53 ]


  • F_J_K
  • Registratie: Juni 2001
  • Niet online

F_J_K

Moderator CSA/PB

Front verplichte underscores

pjotrbee schreef op dinsdag 14 januari 2014 @ 15:56:
De URL http://localhost/Symfony2vendor/web/config.php geeft netjes het Symfony welkomscherm.
De URL symfony.loc/web/config.php wordt niet herkent !! Chrome maakt er een google-search opdracht van.
de tweede URL moet dan ook http://symfony.loc/Symfony2vendor/web/config.php zijn ;) (Of de eerste ook zonder /Symfony2vendor/ als je files daar niet zijn te vinden vanwege die documentroot).
sam.vimes schreef op vrijdag 17 januari 2014 @ 11:41:
In je hosts-file mag elk ip-nummer (eerste kolom) maar een keer voorkomen.
Dat herken ik ook totaal niet :? Over welk OS heb je het daarbij? In ieder geval geen Windows <= 7
quote: hostsfile
127.0.0.1 bla
127.0.0.1 bla.bla
C:\Users\FJK>ping bla

Pinging bla [127.0.0.1] with 32 bytes of data:
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

Ping statistics for 127.0.0.1:
Packets: Sent = 2, Received = 2, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
Control-C
^C
C:\Users\FJK>ping bla.bla

Pinging bla.bla [127.0.0.1] with 32 bytes of data:
Reply from 127.0.0.1: bytes=32 time<1ms TTL=128

[ Voor 4% gewijzigd door F_J_K op 20-01-2014 20:18 ]

'Multiple exclamation marks,' he went on, shaking his head, 'are a sure sign of a diseased mind' (Terry Pratchett, Eric)


  • Jeroen_ae92
  • Registratie: April 2012
  • Laatst online: 28-11 14:17
Het lijkt me zowieso wijs om je 2e site buiten de default htdocs te houden. Dit om verwevingen etc te voorkomen.

Probeer deze is en herstart daarna apache. Uiteraard, zorg wel dat je data ook in de juiste directory staat.

code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
NameVirtualHost *:80
  <VirtualHost *:80>
    DocumentRoot "C:\xampp\htdocs"
    ServerName localhost
  </VirtualHost>
  <VirtualHost *:80>
    ServerName symfony.loc
    ServerAlias *.symfony.loc
    DocumentRoot "C:\xampp\www\Symfony2Vendor\htdocs"
    ErrorLog "C:\xampp\logs\symfony-error.log"
    CustomLog "C:\xampp\logs\symfoni-access.log" combined
  <Directory "C:\xampp\www\Symfony2Vendor\htdocs">
    Order allow,deny
    Allow from all
  </Directory>
</VirtualHost>


Daarnaast, wat zegt de apache logging? Apart erbij geplaatst. De c:\xampp\logs directory moet wel bestaan ;)

[ Voor 15% gewijzigd door Jeroen_ae92 op 20-01-2014 21:01 ]

U+


  • Fish
  • Registratie: Juli 2002
  • Niet online

Fish

How much is the fish

Wat staat er in je error log ?

Iperf

Pagina: 1