Edgewall Software

Changes between Initial Version and Version 1 of Ticket #4375


Ignore:
Timestamp:
Dec 11, 2006, 7:18:41 PM (17 years ago)
Author:
Emmanuel Blot
Comment:

(fixing description)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4375 – Description

    initial v1  
    1 Maybe I'm just to stupid:[[BR]]
    2 This config will work:[[BR]]
     1Maybe I'm just to stupid:
     2 * This config will work:
     3{{{
    34<VirtualHost 83.151.25.254:80>
    4     DocumentRoot /home/oh-dev/tobyf.de/trac[[BR]]
    5     ServerName oh-trac.tobyf.de[[BR]]
    6     ServerAdmin webmaster@tobyf.de[[BR]]
     5    DocumentRoot /home/oh-dev/tobyf.de/trac
     6    ServerName oh-trac.tobyf.de
     7    ServerAdmin webmaster@tobyf.de
    78
    8     <Location "/">[[BR]]
    9         SetHandler mod_python[[BR]]
    10         PythonHandler trac.web.modpython_frontend[[BR]]
    11         PythonOption TracEnv /home/oh-dev/tobyf.de/trac[[BR]]
    12         PythonOption TracUriRoot /[[BR]]
    13         PythonDebug on[[BR]]
    14 #    </Location>[[BR]]
    15 [[BR]]
    16 #    <Location "/login">[[BR]]
    17         AuthType Basic[[BR]]
    18         AuthName "OpenHope Teambereich"[[BR]]
    19         AuthUserFile /home/oh-dev/tobyf.de/trac/trac_login[[BR]]
    20         Require valid-user[[BR]]
    21     </Location>[[BR]]
     9    <Location "/">
     10        SetHandler mod_python
     11        PythonHandler trac.web.modpython_frontend
     12        PythonOption TracEnv /home/oh-dev/tobyf.de/trac
     13        PythonOption TracUriRoot /
     14        PythonDebug on
     15#    </Location>
    2216
    23     ErrorLog /var/log/apache2/error.trac.log[[BR]]
    24     CustomLog /var/log/apache2/access.trac.log combined[[BR]]
    25 </VirtualHost>[[BR]]
    26 [[BR]]
    27 This one not:[[BR]]
    28 <VirtualHost 83.151.25.254:80>[[BR]]
    29     DocumentRoot /home/oh-dev/tobyf.de/trac[[BR]]
    30     ServerName oh-trac.tobyf.de[[BR]]
    31     ServerAdmin webmaster@tobyf.de[[BR]]
     17#    <Location "/login">
     18        AuthType Basic
     19        AuthName "OpenHope Teambereich"
     20        AuthUserFile /home/oh-dev/tobyf.de/trac/trac_login
     21        Require valid-user
     22    </Location>
    3223
    33     <Location "/">[[BR]]
    34         SetHandler mod_python[[BR]]
    35         PythonHandler trac.web.modpython_frontend[[BR]]
    36         PythonOption TracEnv /home/oh-dev/tobyf.de/trac[[BR]]
    37         PythonOption TracUriRoot /[[BR]]
    38         PythonDebug on[[BR]]
    39     </Location>[[BR]]
     24    ErrorLog /var/log/apache2/error.trac.log
     25    CustomLog /var/log/apache2/access.trac.log combined
     26</VirtualHost>
     27}}}
     28 * This one not:
     29{{{
     30<VirtualHost 83.151.25.254:80>
     31    DocumentRoot /home/oh-dev/tobyf.de/trac
     32    ServerName oh-trac.tobyf.de
     33    ServerAdmin webmaster@tobyf.de
    4034
    41     <Location "/login">[[BR]]
    42         AuthType Basic[[BR]]
    43         AuthName "OpenHope Teambereich"[[BR]]
    44         AuthUserFile /home/oh-dev/tobyf.de/trac/trac_login[[BR]]
    45         Require valid-user[[BR]]
    46     </Location>[[BR]]
     35    <Location "/">
     36        SetHandler mod_python
     37        PythonHandler trac.web.modpython_frontend
     38        PythonOption TracEnv /home/oh-dev/tobyf.de/trac
     39        PythonOption TracUriRoot /
     40        PythonDebug on
     41    </Location>
    4742
    48     ErrorLog /var/log/apache2/error.trac.log[[BR]]
    49     CustomLog /var/log/apache2/access.trac.log combined[[BR]]
    50 </VirtualHost>[[BR]]
    51 [[BR]]
    52 I'm using Debian Edge with Apache 2.2.[[BR]]
    53 All I get using the lower config is [[BR]]
    54 Internal Error[[BR]]
     43    <Location "/login">
     44        AuthType Basic
     45        AuthName "OpenHope Teambereich"
     46        AuthUserFile /home/oh-dev/tobyf.de/trac/trac_login
     47        Require valid-user
     48    </Location>
    5549
    56 Authentication information not available. Please refer to the installation documentation.[[BR]]
     50    ErrorLog /var/log/apache2/error.trac.log
     51    CustomLog /var/log/apache2/access.trac.log combined
     52</VirtualHost>
     53}}}
     54
     55I'm using Debian Edge with Apache 2.2.
     56
     57All I get using the lower config is
     58{{{
     59Internal Error
     60
     61Authentication information not available. Please refer to the installation documentation.
     62}}}
     63
    5764I have check all logs and found nothing relevant, whether in apache-logs nor in trac-logs.[[BR]]
    58 If I move the installation to another path, eg. oh-trac.tobyf.de/trac it will work.
     65If I move the installation to another path, eg. oh-trac.tobyf.de/trac it will work.[[BR]]
     66
    5967I think this is a very strange behaviour, maybe I made something wrong?
     68