- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- apache 403 Forbidden error
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 08:37 AM
тАО09-01-2005 08:37 AM
apache 403 Forbidden error
I am using apache 2.0.54 on RH9. I am trying to configure Big brother server on it. The apache default page is coming properly but the Big brother index page is not displaying . It is giving the above error. The error_log is saying
Symbolic link not allowed: /usr/local/apache2/htdocs/bb. I am having a symbolic link to the DocumentRoot /usr/local/apache2/htdocs
Anything to do with the FollowSymLinks options in the config file?
Thanks in advance
CS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 08:55 AM
тАО09-01-2005 08:55 AM
Re: apache 403 Forbidden error
Options FollowSymLinks
Is not enabled for the virtual directory.
Add the option to the apache configuration file for big brother. I don't know about big brother configuration but it's very likely that will install a file in /etc/httpd/conf.d.
So edit the file and add the option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 09:26 AM
тАО09-01-2005 09:26 AM
Re: apache 403 Forbidden error
Any idea how to make the necessary changes.
I have a symbolic link in /usr/local/apache2/htdocs ( Which is the DocumentRoot)
ll /usr/local/apache2/htdocs shows that
bb -> /home/bb/bb1.9e-btf/www
I want to access /usr/local/apache2/htdocs/bb/index.html through browser.
Now what change i have to do in the httpd.conf file so that apache can access it. File permssions are given as 777
Reagrds
CS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 09:43 AM
тАО09-01-2005 09:43 AM
Re: apache 403 Forbidden error
(more lines here)
Find these lines and configure the options:
Options FollowSymLinks
(more lines here)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 10:08 AM
тАО09-01-2005 10:08 AM
Re: apache 403 Forbidden error
vi conf.d/bigbrother.conf
And configure like this:
Alias /bb "/home/bb/bb1.9e-btf/www"
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
This way, you won't need the soft link any more.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2005 01:42 PM
тАО09-01-2005 01:42 PM
Re: apache 403 Forbidden error
I tried putting the /usr/local/apache2/htdocs/bb entry in the httpd.conf and tried to enable symbolic linking, but didin;t work.
If I make a sepearte file how apache is going read that? Also what path I can give in the browser to get to the www directory in bb?( By default the Browser looks in the RootDocument definded in the httpd.conf file)
Regards
CS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-02-2005 01:16 AM
тАО09-02-2005 01:16 AM
Re: apache 403 Forbidden error
ServerRoot
This directive indicates where the configuration files are located.
Include conf.d/*.conf
This directive indicates that all files in "ServerRoot"/conf.d ending in .conf sould be loaded as part of the configuration file. That's how the conf.d/bigbrother.conf file is loaded.
And if you configure the file as my last post, the URL to access the "Alias" created will be:
http://yourserver/bb