This is a discussion on Help With Virtual Directories within the Apache Web Server forums, part of the Web Server and Related Forums category; Hi All, I have just finished installing IBM's HTTP Server which is powered by Apache 2.0 on a ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi All,
I have just finished installing IBM's HTTP Server which is powered by Apache 2.0 on a RS6000 server running AIX 5.3 ML2. During the installation of the Cognos application the documentation stated that we needed to create the following virtual directories. - Create the following virtual directories: Alias Location Permission Cognos8 C8_Location/webcontent Read Cognos8/cgi-bin C8_location/cgi-bin execute Since I have never done this before I was looking for some help to understand what it is they really want. Can someone either explain this to me or paste a few links so that I can better understand what it is they are requesting and how to set these directories up. Thanks so much for reading this. Shawn |
|
|||
|
create directories symlinked with the alias provided. ie:
cd /path/to/doc_root ln -s /path/to/application/C8_Location/webcontent Cognos8 chmod 744 Cognos8 and chmod 755 for teh other directory. "Shawn" <shawnm1964@sbcglobal.net> wrote in message news:1135048316.703233.245900@g47g2000cwa.googlegr oups.com... > Hi All, > > I have just finished installing IBM's HTTP Server which is powered by > Apache 2.0 on a RS6000 server running AIX 5.3 ML2. > > During the installation of the Cognos application the documentation > stated that we needed to create the following virtual directories. > > - Create the following virtual directories: > Alias Location Permission > Cognos8 C8_Location/webcontent Read > Cognos8/cgi-bin C8_location/cgi-bin execute > > Since I have never done this before I was looking for some help to > understand what it is they really want. Can someone either explain > this to me or paste a few links so that I can better understand what it > is they are requesting and how to set these directories up. > > Thanks so much for reading this. > Shawn > |