Hi,

2009/12/9 Job <[email protected]>:
> hi all,
>
> the problem is the following:
>
> localhost:8080/index.php          works fine. (symfony project)
>
> 192.168.1.36:80/index.php        works fine (xampp intro page from
> another computer)
>
> 192.168.1.36:8080                    does not work!! does not find the
> page
>
> i have found a couple of threads with similar problems: but not have
> any clue how to solve....
>
> http://www.openbluhost.com/windows-server/52606-help-apache-works-localhost-but-not-remote
>
> thanks in advance,

I'm using the following config. It should work fine for you. You just
need to change 80 port to 8080 and path'es.

NameVirtualHost *:80

<VirtualHost *:80>
    DocumentRoot /var/www/html/
</VirtualHost>

<VirtualHost *:80>
    ServerName project
    DocumentRoot /home/michal/projekty/project/web
    DirectoryIndex index.php
    <Directory /home/michal/projekty/project/web>
        AllowOverride All
        Allow from All
    </Directory>

    Alias /sf /usr/share/pear/data/symfony/web/sf
    <Directory /usr/share/pear/data/symfony/web/sf>
        AllowOverride All
        Allow from All
    </Directory>
</VirtualHost>

Regards,
M.

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.


Reply via email to