Questions tagged [http-status-code-403]

403 Forbidden: The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.

236 questions
0
votes
1 answer

root location of Flask app returns 403 on nginx server

I've seen other posts say that either file permissions or the lack of an index directive are the cause. However, my Flask application does not have an index file at all, and most of the site works like a charm. nginx.conf server { listen …
Chockomonkey
  • 2,683
  • 3
  • 11
  • 10
0
votes
1 answer

Serving a git repository with nginx fails with 403 Forbidden

I made a user git and placed an empty bare repository in his home directory /home/git: $ git init --bare test.git $ ls -l drwxr-xr-x 7 git git 4.0K Jul 18 12:51 test.git I want this repository to be accessible as example.com/repos/test.git. To…
liszt
  • 151
  • 1
  • 7
0
votes
0 answers

IIS 8.5 access specific file ends in 403.14

In IIS I created a virtual directory to my media asset folder, which contains all images for my application. For some reason I can't access images in one subdirectory directly, it ends in http error 403.14. Images in other subdirectories are…
0
votes
6 answers

Mod_rewrite (CakePHP routing functionality) forbidden after Snow Leopard upgrade

I am using the standard Apple-provided installations of PHP 5.3 and Apache 2 to do web development on a Mac Pro that I just upgraded to Mac OS X 10.6 (Snow Leopard). The upgrade went well enough, if I ignore the fact that it destroyed my ability to…
0
votes
0 answers

Welcome to Nginx! Instead of website

I hope this is the right place to post this. I have a CentOS 6 VPS that hosts multiple sites. There are three existing sites that are currently running on it just fine, but I am now trying to add a fourth and always get the "Welcome to nginx on…
0
votes
1 answer

Nginx Reverse Proxy w/ SSL - 403 Error

I've been trying to install Nginx as a reverse proxy for the past couple of days, but I can't get it to work. Everytime I load a page on my site, or even a file on my server, it returns a 403 forbidden error. I've been following a tutorial I found…
0
votes
1 answer

403 Nginx issue, serving files from /home/user/localhost

I'm trying to serve files from a directory called localhost under my home. In my server block I specified root /home/user/localhost If I change nginx user from http to my username it works but I have problems with php-fpm. I want to own that folder…
vinzdef
  • 101
  • 2
0
votes
1 answer

SharePoint link to Cognos TM1 Server causes 403

We have a strange issue where a direct link from SharePoint to a Cognos TM1 URL causes a 403, however if we refresh or paste-in the link directly it works. The cause might be related to the leading "http" being stripped-off (see below with the other…
PeterX
  • 128
  • 1
  • 6
0
votes
2 answers

Apache 403 Error after several successful requests

I am experiencing some odd behavior with Apache. I have several vhosts setup on my local machine. I am currently experiencing this on 1 of the vhosts, as I am doing dev work constantly, however I think it happened on another local site as well.…
0
votes
1 answer

Apache 403 on multiple domains pointing to the same web root

I'm running serverpilot on linode, which installs Ubuntu 14.4. I need to point three domains to the same modx install. The first domain that modx was setup with works fine. When I added the second domain to the vhosts that worked also worked. When…
squeaker
  • 101
0
votes
0 answers

How do I diagnose a blocked connection to an internet webserver?

When I browse to three specific sites (which happen to be run by the same provider), I get a 403 Forbidden Nginx error. However, the sites are up. I am able to access the sites when I use a proxy such as Hola or Tor to access the servers from a…
Joshua Fox
  • 239
  • 2
  • 8
0
votes
2 answers

Apache LIMIT directive does not allow to see localhost project over LAN

I want to allow to see my localhost project over the LAN using Apache LIMIT directive in .htaccess my localhost project URL is http://192.68.0.123/myproject below is the .htaccess part which cause problem order deny,allow …
xkeshav
  • 147
  • 1
  • 1
  • 11
0
votes
1 answer

Nginx deny IP's and setting custom 403 downloads a file?

I've attached my Nginx conf file for my default site which runs on Ubuntu. What I'm trying to achieve is the following: Main directory is /usr/share/nginx/www with the default file index.php Restricting IP addresses for now until launch so only…
DT.DTDG
  • 143
  • 1
  • 3
  • 7
0
votes
1 answer

Apache localhost 403 error with Yosemite

I've just installed Mac OS X Yosemite fresh. I configured Apache and chmodded "users/user/Sites" to 755. When I hit localhost I receive a 403 Forbidden "You don't have permission to access / on this server". The same thing occurs with any other…
Zach Shallbetter
  • 172
  • 2
  • 11
0
votes
1 answer

Nginx 403 forbidden error after moving wordpress files to a different location

I had Wordpress working inside a Rails application using fastcgi. Now I'm moving everything around so that it can be accessed at /blog in production. I moved the wordpress files and updated the nginx location block from /wptest to /blog. However,…