403 on webs

Discussion in 'Installation/Configuration' started by fuban, Sep 2, 2005.

  1. fuban

    fuban New Member

    hi,

    i got rid of confixx and installed ispconfig 2.08 on a brand new suse 9.3 setup - guided by the wonderful howto.

    but i compiled php 4.40 and apage 2 myself to have the newest version.

    well i install ispconfig, all went fine.
    here is my problem:
    i added a customer and a web - but when i type in the url of this web i get an 403 - forbidden.

    another thing i haven't figured out yet:
    when i add a web, how can i access this web via ftp?
    it must be supereasy... but i dont get the point.

    thanks, fabian
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Has ISPConfig created the vhost file correctly? The vhosts are in the file
    Vhost_ispconfig.conf. It is in the directory /etc/apache/vhosts or a similar directory under the config directory of your apache webserver. If you are unshure if the vhost is correct, post the content here.

    Is the vhost configuration file included at the end of your httpd.conf?

    What are the permissions of the directory of your website?


    Create a new user and check the "Administrator" Checkbox. This user will be able to upload files via FTP to your website.
     
  3. fuban

    fuban New Member

    yes, the vhost setup is correct:
    DocumentRoot /srv/www/web1/web

    permissions:
    linux:/srv/www/web1 # ls -lisa
    total 0
    106184 0 drwxr-xr-x 8 nobody web1 192 Sep 1 17:30 .
    652 0 drwxr-xr-x 3 root root 112 Sep 2 17:05 ..
    106190 0 drwxrwxr-x 2 nobody web1 80 Sep 1 17:30 cgi-bin
    106188 0 drwxr-xr-x 2 nobody web1 112 Sep 1 17:44 log
    106194 0 drwxrwxrwx 2 nobody web1 80 Sep 1 17:30 phptmp
    106192 0 drwxr-xr-x 2 nobody web1 80 Sep 1 17:30 ssl
    106186 0 drwxr-xr-x 3 nobody web1 112 Sep 1 17:31 user
    106185 0 drwxrwxr-x 3 nobody web1 104 Sep 1 17:30 web
    linux:/srv/www/web1 #




    ah ok, thanks i'll give it a try.
    i assume that i can enable an administrator for every single web ;)

    thanks
     
  4. till

    till Super Moderator Staff Member ISPConfig Developer

    is the file /srv/www/web1/web/index.html there?
    Did you get an forbidden error even if you call www.yourdomain.com/index.html?
    Is the IP in the vhost configuration correct and does the domain point to your server?
     
  5. fuban

    fuban New Member

    yes, the file is there.
    but i get an 404 then...
    here is my vhost, seems like there is something wrong - but it looks good, maybe you find something:

    <VirtualHost 192.168.0.226:80>
    SuexecUserGroup nobody web1
    ServerName www.xxxxxx.de:80
    ServerAdmin [email protected]
    DocumentRoot /srv/www/web1/web
    ServerAlias xxxxxx.de
    DirectoryIndex index.html index.htm index.php index.php5 index.php4 index.php3 index.shtml index.cgi index.pl index.jsp Default.htm default.htm
    ErrorLog /srv/www/web1/log/error.log
    AddType application/x-httpd-php .php .php3 .php4 .php5
    <Files *.php>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php3>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php4>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    <Files *.php5>
    SetOutputFilter PHP
    SetInputFilter PHP
    </Files>
    php_admin_flag safe_mode Off
    Alias /error/ "/srv/www/web1/web/error/"
    ErrorDocument 400 /error/invalidSyntax.html
    ErrorDocument 401 /error/authorizationRequired.html
    ErrorDocument 403 /error/forbidden.html
    ErrorDocument 404 /error/fileNotFound.html
    ErrorDocument 405 /error/methodNotAllowed.html
    ErrorDocument 500 /error/internalServerError.html
    ErrorDocument 503 /error/overloaded.html
    AliasMatch ^/~([^/]+)(/(.*))? /srv/www/web1/user/$1/web/$3
    AliasMatch ^/users/([^/]+)(/(.*))? /srv/www/web1/user/$1/web/$3
    </VirtualHost>
     
  6. till

    till Super Moderator Staff Member ISPConfig Developer


    As it is a private network address, are you shure you configured DNS correctly for the domain?
     
  7. fuban

    fuban New Member

    well i'm setting the system up in my lan before i let it go public.
    i have my hosts file updated to the local ip adress, so this should be fine

    another thing, i just uninstalled ispconfig to start the installtion again - and i still get the 403 page (even if i clear cache) - so it looks like there is something with my httpd.conf ?
     
    Last edited: Sep 2, 2005
  8. falko

    falko Super Moderator ISPConfig Developer

    Can you post your httpd.conf here? and also the output of
    Code:
    httpd -V
    ?
     
  9. fuban

    fuban New Member

    thanks for your help - but i ended up installing a debian 3.1 - and i'm much more happier with debian than with suse.
     
  10. falko

    falko Super Moderator ISPConfig Developer

    Just like me... :D :D
     

Share This Page